Address review feedback

This commit is contained in:
Bart
2026-06-07 17:16:44 -04:00
parent b3ef351fed
commit a79598adcb

View File

@@ -43,7 +43,7 @@ void
CanonicalTXSet::insert(std::shared_ptr<STTx const> txn)
{
Key key(accountKey(txn->getAccountID(sfAccount)), txn->getSeqProxy(), txn->getTransactionID());
map_.insert(std::make_pair(key, std::move(txn)));
map_.emplace(std::move(key), std::move(txn));
}
std::shared_ptr<STTx const>