mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-20 23:29:12 +01:00
refactor: fix clang-tidy named args usage
This commit is contained in:
@@ -29,11 +29,11 @@ static void RpcMempool(benchmark::Bench& bench)
|
||||
tx.vout[0].scriptPubKey = CScript() << OP_1 << OP_EQUAL;
|
||||
tx.vout[0].nValue = i;
|
||||
const CTransactionRef tx_r{MakeTransactionRef(tx)};
|
||||
AddTx(tx_r, /* fee */ i, pool);
|
||||
AddTx(tx_r, /*fee=*/i, pool);
|
||||
}
|
||||
|
||||
bench.run([&] {
|
||||
(void)MempoolToJSON(pool, /*verbose*/ true);
|
||||
(void)MempoolToJSON(pool, /*verbose=*/true);
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user