mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
refactor: fix clang-tidy named args usage
This commit is contained in:
parent
62efdfb3be
commit
37a16ffd70
32 changed files with 61 additions and 61 deletions
|
|
@ -655,7 +655,7 @@ bool SignTransaction(CMutableTransaction& mtx, const SigningProvider* keystore,
|
|||
CTxIn& txin = mtx.vin[i];
|
||||
auto coin = coins.find(txin.prevout);
|
||||
if (coin == coins.end() || coin->second.IsSpent()) {
|
||||
txdata.Init(txConst, /* spent_outputs */ {}, /* force */ true);
|
||||
txdata.Init(txConst, /*spent_outputs=*/{}, /*force=*/true);
|
||||
break;
|
||||
} else {
|
||||
spent_outputs.emplace_back(coin->second.out.nValue, coin->second.out.scriptPubKey);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue