Skip to content

Commit

Permalink
Fixes for clang tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
mxaddict committed Jan 4, 2024
1 parent 2d65ce7 commit 823c5e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blsct/wallet/txfactory_global.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ CTransactionRef AggregateTransactions(const std::vector<CTransactionRef>& txs)
}
}

ret.vout.push_back(CTxOut{nFee, CScript{OP_RETURN}});
ret.vout.emplace_back(CTxOut{nFee, CScript{OP_RETURN}});

ret.txSig = blsct::Signature::Aggregate(vSigs);
ret.nVersion = CTransaction::BLSCT_MARKER;
Expand Down

0 comments on commit 823c5e2

Please sign in to comment.