Fix comments

This commit is contained in:
JCW
2026-04-17 18:44:20 +01:00
parent 116d65e89c
commit 422c35ebea
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ public:
}
std::unique_ptr<beast::Journal::Sink>
makeSink([[maybe_unused]] std::string const&, beast::severities::Severity threshold) override
makeSink(std::string const&, beast::severities::Severity threshold) override
{
return std::make_unique<TestSink>(threshold);
}

View File

@@ -92,7 +92,7 @@ TxTest::submit(std::shared_ptr<STTx const> stx)
return TxResult{
.ter = result.ter,
.applied = result.applied,
.metadata = std::move(result.metadata),
.metadata = std::move(result).metadata,
.tx = stx};
}