refactor: fix clang-tidy named args usage

This commit is contained in:
fanquake 2022-04-02 16:01:40 +01:00
parent 62efdfb3be
commit 37a16ffd70
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1
32 changed files with 61 additions and 61 deletions

View file

@ -590,7 +590,7 @@ public:
bool relay,
std::string& err_string) override
{
const TransactionError err = BroadcastTransaction(m_node, tx, err_string, max_tx_fee, relay, /*wait_callback*/ false);
const TransactionError err = BroadcastTransaction(m_node, tx, err_string, max_tx_fee, relay, /*wait_callback=*/false);
// Chain clients only care about failures to accept the tx to the mempool. Disregard non-mempool related failures.
// Note: this will need to be updated if BroadcastTransactions() is updated to return other non-mempool failures
// that Chain clients do not need to know about.