mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Merge bitcoin/bitcoin#22981: doc: Fix incorrect C++ named args
fac49470ca
doc: Fix incorrect C++ named args (MarcoFalke) Pull request description: Incorrect named args are source of bugs, like #22979. Fix that by correcting them and adjust the format, so that clang-tidy can check it. ACKs for top commit: fanquake: ACKfac49470ca
- `run-clang-tidy` works for me now. Tree-SHA512: 2694e17a1586394baf30bbc479a913e4bad361221e8470b8739caf30aacea736befc73820f3fe56f6207d9f5d969323278d43a647f58c3497e8e44cad79f8934
This commit is contained in:
commit
606e306277
10 changed files with 29 additions and 29 deletions
|
@ -12,7 +12,7 @@
|
||||||
static void AddTx(const CTransactionRef& tx, const CAmount& fee, CTxMemPool& pool) EXCLUSIVE_LOCKS_REQUIRED(cs_main, pool.cs)
|
static void AddTx(const CTransactionRef& tx, const CAmount& fee, CTxMemPool& pool) EXCLUSIVE_LOCKS_REQUIRED(cs_main, pool.cs)
|
||||||
{
|
{
|
||||||
LockPoints lp;
|
LockPoints lp;
|
||||||
pool.addUnchecked(CTxMemPoolEntry(tx, fee, /* time */ 0, /* height */ 1, /* spendsCoinbase */ false, /* sigOpCost */ 4, lp));
|
pool.addUnchecked(CTxMemPoolEntry(tx, fee, /*time=*/0, /*entry_height=*/1, /*spends_coinbase=*/false, /*sigops_cost=*/4, lp));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void RpcMempool(benchmark::Bench& bench)
|
static void RpcMempool(benchmark::Bench& bench)
|
||||||
|
|
|
@ -3024,7 +3024,7 @@ void CConnman::PushMessage(CNode* pnode, CSerializedNetMsg&& msg)
|
||||||
size_t nMessageSize = msg.data.size();
|
size_t nMessageSize = msg.data.size();
|
||||||
LogPrint(BCLog::NET, "sending %s (%d bytes) peer=%d\n", msg.m_type, nMessageSize, pnode->GetId());
|
LogPrint(BCLog::NET, "sending %s (%d bytes) peer=%d\n", msg.m_type, nMessageSize, pnode->GetId());
|
||||||
if (gArgs.GetBoolArg("-capturemessages", false)) {
|
if (gArgs.GetBoolArg("-capturemessages", false)) {
|
||||||
CaptureMessage(pnode->addr, msg.m_type, msg.data, /* incoming */ false);
|
CaptureMessage(pnode->addr, msg.m_type, msg.data, /*is_incoming=*/false);
|
||||||
}
|
}
|
||||||
|
|
||||||
TRACE6(net, outbound_message,
|
TRACE6(net, outbound_message,
|
||||||
|
|
|
@ -4105,7 +4105,7 @@ bool PeerManagerImpl::ProcessMessages(CNode* pfrom, std::atomic<bool>& interrupt
|
||||||
);
|
);
|
||||||
|
|
||||||
if (gArgs.GetBoolArg("-capturemessages", false)) {
|
if (gArgs.GetBoolArg("-capturemessages", false)) {
|
||||||
CaptureMessage(pfrom->addr, msg.m_command, MakeUCharSpan(msg.m_recv), /* incoming */ true);
|
CaptureMessage(pfrom->addr, msg.m_command, MakeUCharSpan(msg.m_recv), /*is_incoming=*/true);
|
||||||
}
|
}
|
||||||
|
|
||||||
msg.SetVersion(pfrom->GetCommonVersion());
|
msg.SetVersion(pfrom->GetCommonVersion());
|
||||||
|
|
|
@ -69,7 +69,7 @@ int main(int argc, char* argv[])
|
||||||
#if defined(WIN32)
|
#if defined(WIN32)
|
||||||
if (getenv("QT_QPA_PLATFORM") == nullptr) _putenv_s("QT_QPA_PLATFORM", "minimal");
|
if (getenv("QT_QPA_PLATFORM") == nullptr) _putenv_s("QT_QPA_PLATFORM", "minimal");
|
||||||
#else
|
#else
|
||||||
setenv("QT_QPA_PLATFORM", "minimal", /* overwrite */ 0);
|
setenv("QT_QPA_PLATFORM", "minimal", 0 /* overwrite */);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Don't remove this, it's needed to access
|
// Don't remove this, it's needed to access
|
||||||
|
|
|
@ -1010,7 +1010,7 @@ static RPCHelpMan submitblock()
|
||||||
bool new_block;
|
bool new_block;
|
||||||
auto sc = std::make_shared<submitblock_StateCatcher>(block.GetHash());
|
auto sc = std::make_shared<submitblock_StateCatcher>(block.GetHash());
|
||||||
RegisterSharedValidationInterface(sc);
|
RegisterSharedValidationInterface(sc);
|
||||||
bool accepted = chainman.ProcessNewBlock(Params(), blockptr, /* fForceProcessing */ true, /* fNewBlock */ &new_block);
|
bool accepted = chainman.ProcessNewBlock(Params(), blockptr, /*force_processing=*/true, /*new_block=*/&new_block);
|
||||||
UnregisterSharedValidationInterface(sc);
|
UnregisterSharedValidationInterface(sc);
|
||||||
if (!new_block && accepted) {
|
if (!new_block && accepted) {
|
||||||
return "duplicate";
|
return "duplicate";
|
||||||
|
|
|
@ -1619,7 +1619,7 @@ static RPCHelpMan utxoupdatepsbt()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// We don't actually need private keys further on; hide them as a precaution.
|
// We don't actually need private keys further on; hide them as a precaution.
|
||||||
HidingSigningProvider public_provider(&provider, /* nosign */ true, /* nobip32derivs */ false);
|
HidingSigningProvider public_provider(&provider, /*hide_secret=*/true, /*hide_origin=*/false);
|
||||||
|
|
||||||
// Fetch previous transactions (inputs):
|
// Fetch previous transactions (inputs):
|
||||||
CCoinsView viewDummy;
|
CCoinsView viewDummy;
|
||||||
|
@ -1658,7 +1658,7 @@ static RPCHelpMan utxoupdatepsbt()
|
||||||
// Update script/keypath information using descriptor data.
|
// Update script/keypath information using descriptor data.
|
||||||
// Note that SignPSBTInput does a lot more than just constructing ECDSA signatures
|
// Note that SignPSBTInput does a lot more than just constructing ECDSA signatures
|
||||||
// we don't actually care about those here, in fact.
|
// we don't actually care about those here, in fact.
|
||||||
SignPSBTInput(public_provider, psbtx, i, &txdata, /* sighash_type */ 1);
|
SignPSBTInput(public_provider, psbtx, i, &txdata, /*sighash=*/1);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update script/keypath information using descriptor data.
|
// Update script/keypath information using descriptor data.
|
||||||
|
|
|
@ -59,7 +59,7 @@ BOOST_AUTO_TEST_CASE(outbound_slow_chain_eviction)
|
||||||
|
|
||||||
// Mock an outbound peer
|
// Mock an outbound peer
|
||||||
CAddress addr1(ip(0xa0b0c001), NODE_NONE);
|
CAddress addr1(ip(0xa0b0c001), NODE_NONE);
|
||||||
CNode dummyNode1(id++, ServiceFlags(NODE_NETWORK | NODE_WITNESS), INVALID_SOCKET, addr1, /* nKeyedNetGroupIn */ 0, /* nLocalHostNonceIn */ 0, CAddress(), /* pszDest */ "", ConnectionType::OUTBOUND_FULL_RELAY, /* inbound_onion */ false);
|
CNode dummyNode1(id++, ServiceFlags(NODE_NETWORK | NODE_WITNESS), INVALID_SOCKET, addr1, /*nKeyedNetGroupIn=*/0, /*nLocalHostNonceIn=*/0, CAddress(), /*addrNameIn=*/"", ConnectionType::OUTBOUND_FULL_RELAY, /*inbound_onion=*/false);
|
||||||
dummyNode1.SetCommonVersion(PROTOCOL_VERSION);
|
dummyNode1.SetCommonVersion(PROTOCOL_VERSION);
|
||||||
|
|
||||||
peerLogic->InitializeNode(&dummyNode1);
|
peerLogic->InitializeNode(&dummyNode1);
|
||||||
|
@ -108,7 +108,7 @@ BOOST_AUTO_TEST_CASE(outbound_slow_chain_eviction)
|
||||||
static void AddRandomOutboundPeer(std::vector<CNode*>& vNodes, PeerManager& peerLogic, ConnmanTestMsg& connman)
|
static void AddRandomOutboundPeer(std::vector<CNode*>& vNodes, PeerManager& peerLogic, ConnmanTestMsg& connman)
|
||||||
{
|
{
|
||||||
CAddress addr(ip(g_insecure_rand_ctx.randbits(32)), NODE_NONE);
|
CAddress addr(ip(g_insecure_rand_ctx.randbits(32)), NODE_NONE);
|
||||||
vNodes.emplace_back(new CNode(id++, ServiceFlags(NODE_NETWORK | NODE_WITNESS), INVALID_SOCKET, addr, /* nKeyedNetGroupIn */ 0, /* nLocalHostNonceIn */ 0, CAddress(), /* pszDest */ "", ConnectionType::OUTBOUND_FULL_RELAY, /* inbound_onion */ false));
|
vNodes.emplace_back(new CNode(id++, ServiceFlags(NODE_NETWORK | NODE_WITNESS), INVALID_SOCKET, addr, /*nKeyedNetGroupIn=*/0, /*nLocalHostNonceIn=*/0, CAddress(), /*addrNameIn=*/"", ConnectionType::OUTBOUND_FULL_RELAY, /*inbound_onion=*/false));
|
||||||
CNode &node = *vNodes.back();
|
CNode &node = *vNodes.back();
|
||||||
node.SetCommonVersion(PROTOCOL_VERSION);
|
node.SetCommonVersion(PROTOCOL_VERSION);
|
||||||
|
|
||||||
|
@ -212,9 +212,9 @@ BOOST_AUTO_TEST_CASE(peer_discouragement)
|
||||||
std::array<CNode*, 3> nodes;
|
std::array<CNode*, 3> nodes;
|
||||||
|
|
||||||
banman->ClearBanned();
|
banman->ClearBanned();
|
||||||
nodes[0] = new CNode{id++, NODE_NETWORK, INVALID_SOCKET, addr[0], /* nKeyedNetGroupIn */ 0,
|
nodes[0] = new CNode{id++, NODE_NETWORK, INVALID_SOCKET, addr[0], /*nKeyedNetGroupIn=*/0,
|
||||||
/* nLocalHostNonceIn */ 0, CAddress(), /* pszDest */ "",
|
/*nLocalHostNonceIn */ 0, CAddress(), /*addrNameIn=*/"",
|
||||||
ConnectionType::INBOUND, /* inbound_onion */ false};
|
ConnectionType::INBOUND, /*inbound_onion=*/false};
|
||||||
nodes[0]->SetCommonVersion(PROTOCOL_VERSION);
|
nodes[0]->SetCommonVersion(PROTOCOL_VERSION);
|
||||||
peerLogic->InitializeNode(nodes[0]);
|
peerLogic->InitializeNode(nodes[0]);
|
||||||
nodes[0]->fSuccessfullyConnected = true;
|
nodes[0]->fSuccessfullyConnected = true;
|
||||||
|
@ -228,9 +228,9 @@ BOOST_AUTO_TEST_CASE(peer_discouragement)
|
||||||
BOOST_CHECK(nodes[0]->fDisconnect);
|
BOOST_CHECK(nodes[0]->fDisconnect);
|
||||||
BOOST_CHECK(!banman->IsDiscouraged(other_addr)); // Different address, not discouraged
|
BOOST_CHECK(!banman->IsDiscouraged(other_addr)); // Different address, not discouraged
|
||||||
|
|
||||||
nodes[1] = new CNode{id++, NODE_NETWORK, INVALID_SOCKET, addr[1], /* nKeyedNetGroupIn */ 1,
|
nodes[1] = new CNode{id++, NODE_NETWORK, INVALID_SOCKET, addr[1], /*nKeyedNetGroupIn=*/1,
|
||||||
/* nLocalHostNonceIn */ 1, CAddress(), /* pszDest */ "",
|
/*nLocalHostNonceIn */ 1, CAddress(), /*addrNameIn=*/"",
|
||||||
ConnectionType::INBOUND, /* inbound_onion */ false};
|
ConnectionType::INBOUND, /*inbound_onion=*/false};
|
||||||
nodes[1]->SetCommonVersion(PROTOCOL_VERSION);
|
nodes[1]->SetCommonVersion(PROTOCOL_VERSION);
|
||||||
peerLogic->InitializeNode(nodes[1]);
|
peerLogic->InitializeNode(nodes[1]);
|
||||||
nodes[1]->fSuccessfullyConnected = true;
|
nodes[1]->fSuccessfullyConnected = true;
|
||||||
|
@ -259,9 +259,9 @@ BOOST_AUTO_TEST_CASE(peer_discouragement)
|
||||||
|
|
||||||
// Make sure non-IP peers are discouraged and disconnected properly.
|
// Make sure non-IP peers are discouraged and disconnected properly.
|
||||||
|
|
||||||
nodes[2] = new CNode{id++, NODE_NETWORK, INVALID_SOCKET, addr[2], /* nKeyedNetGroupIn */ 1,
|
nodes[2] = new CNode{id++, NODE_NETWORK, INVALID_SOCKET, addr[2], /*nKeyedNetGroupIn=*/1,
|
||||||
/* nLocalHostNonceIn */ 1, CAddress(), /* pszDest */ "",
|
/*nLocalHostNonceIn */ 1, CAddress(), /*addrNameIn=*/"",
|
||||||
ConnectionType::OUTBOUND_FULL_RELAY, /* inbound_onion */ false};
|
ConnectionType::OUTBOUND_FULL_RELAY, /*inbound_onion=*/false};
|
||||||
nodes[2]->SetCommonVersion(PROTOCOL_VERSION);
|
nodes[2]->SetCommonVersion(PROTOCOL_VERSION);
|
||||||
peerLogic->InitializeNode(nodes[2]);
|
peerLogic->InitializeNode(nodes[2]);
|
||||||
nodes[2]->fSuccessfullyConnected = true;
|
nodes[2]->fSuccessfullyConnected = true;
|
||||||
|
@ -297,7 +297,7 @@ BOOST_AUTO_TEST_CASE(DoS_bantime)
|
||||||
SetMockTime(nStartTime); // Overrides future calls to GetTime()
|
SetMockTime(nStartTime); // Overrides future calls to GetTime()
|
||||||
|
|
||||||
CAddress addr(ip(0xa0b0c001), NODE_NONE);
|
CAddress addr(ip(0xa0b0c001), NODE_NONE);
|
||||||
CNode dummyNode(id++, NODE_NETWORK, INVALID_SOCKET, addr, /* nKeyedNetGroupIn */ 4, /* nLocalHostNonceIn */ 4, CAddress(), /* pszDest */ "", ConnectionType::INBOUND, /* inbound_onion */ false);
|
CNode dummyNode(id++, NODE_NETWORK, INVALID_SOCKET, addr, /*nKeyedNetGroupIn=*/4, /*nLocalHostNonceIn=*/4, CAddress(), /*addrNameIn=*/"", ConnectionType::INBOUND, /*inbound_onion=*/false);
|
||||||
dummyNode.SetCommonVersion(PROTOCOL_VERSION);
|
dummyNode.SetCommonVersion(PROTOCOL_VERSION);
|
||||||
peerLogic->InitializeNode(&dummyNode);
|
peerLogic->InitializeNode(&dummyNode);
|
||||||
dummyNode.fSuccessfullyConnected = true;
|
dummyNode.fSuccessfullyConnected = true;
|
||||||
|
|
|
@ -93,7 +93,7 @@ void Finish(FuzzedDataProvider& fuzzed_data_provider, MockedTxPool& tx_pool, CCh
|
||||||
const auto info_all = tx_pool.infoAll();
|
const auto info_all = tx_pool.infoAll();
|
||||||
if (!info_all.empty()) {
|
if (!info_all.empty()) {
|
||||||
const auto& tx_to_remove = *PickValue(fuzzed_data_provider, info_all).tx;
|
const auto& tx_to_remove = *PickValue(fuzzed_data_provider, info_all).tx;
|
||||||
WITH_LOCK(tx_pool.cs, tx_pool.removeRecursive(tx_to_remove, /* dummy */ MemPoolRemovalReason::BLOCK));
|
WITH_LOCK(tx_pool.cs, tx_pool.removeRecursive(tx_to_remove, MemPoolRemovalReason::BLOCK /* dummy */));
|
||||||
std::vector<uint256> all_txids;
|
std::vector<uint256> all_txids;
|
||||||
tx_pool.queryHashes(all_txids);
|
tx_pool.queryHashes(all_txids);
|
||||||
assert(all_txids.size() < info_all.size());
|
assert(all_txids.size() < info_all.size());
|
||||||
|
|
|
@ -73,19 +73,19 @@ BOOST_FIXTURE_TEST_CASE(package_validation_tests, TestChain100Setup)
|
||||||
CKey parent_key;
|
CKey parent_key;
|
||||||
parent_key.MakeNewKey(true);
|
parent_key.MakeNewKey(true);
|
||||||
CScript parent_locking_script = GetScriptForDestination(PKHash(parent_key.GetPubKey()));
|
CScript parent_locking_script = GetScriptForDestination(PKHash(parent_key.GetPubKey()));
|
||||||
auto mtx_parent = CreateValidMempoolTransaction(/* input_transaction */ m_coinbase_txns[0], /* vout */ 0,
|
auto mtx_parent = CreateValidMempoolTransaction(/*input_transaction=*/ m_coinbase_txns[0], /*input_vout=*/0,
|
||||||
/* input_height */ 0, /* input_signing_key */ coinbaseKey,
|
/*input_height=*/ 0, /*input_signing_key=*/coinbaseKey,
|
||||||
/* output_destination */ parent_locking_script,
|
/*output_destination=*/ parent_locking_script,
|
||||||
/* output_amount */ CAmount(49 * COIN), /* submit */ false);
|
/*output_amount=*/ CAmount(49 * COIN), /*submit=*/false);
|
||||||
CTransactionRef tx_parent = MakeTransactionRef(mtx_parent);
|
CTransactionRef tx_parent = MakeTransactionRef(mtx_parent);
|
||||||
|
|
||||||
CKey child_key;
|
CKey child_key;
|
||||||
child_key.MakeNewKey(true);
|
child_key.MakeNewKey(true);
|
||||||
CScript child_locking_script = GetScriptForDestination(PKHash(child_key.GetPubKey()));
|
CScript child_locking_script = GetScriptForDestination(PKHash(child_key.GetPubKey()));
|
||||||
auto mtx_child = CreateValidMempoolTransaction(/* input_transaction */ tx_parent, /* vout */ 0,
|
auto mtx_child = CreateValidMempoolTransaction(/*input_transaction=*/ tx_parent, /*input_vout=*/0,
|
||||||
/* input_height */ 101, /* input_signing_key */ parent_key,
|
/*input_height=*/ 101, /*input_signing_key=*/parent_key,
|
||||||
/* output_destination */ child_locking_script,
|
/*output_destination */ child_locking_script,
|
||||||
/* output_amount */ CAmount(48 * COIN), /* submit */ false);
|
/*output_amount=*/ CAmount(48 * COIN), /*submit=*/false);
|
||||||
CTransactionRef tx_child = MakeTransactionRef(mtx_child);
|
CTransactionRef tx_child = MakeTransactionRef(mtx_child);
|
||||||
const auto result_parent_child = ProcessNewPackage(m_node.chainman->ActiveChainstate(), *m_node.mempool, {tx_parent, tx_child}, /* test_accept */ true);
|
const auto result_parent_child = ProcessNewPackage(m_node.chainman->ActiveChainstate(), *m_node.mempool, {tx_parent, tx_child}, /* test_accept */ true);
|
||||||
BOOST_CHECK_MESSAGE(result_parent_child.m_state.IsValid(),
|
BOOST_CHECK_MESSAGE(result_parent_child.m_state.IsValid(),
|
||||||
|
|
|
@ -222,7 +222,7 @@ BOOST_AUTO_TEST_CASE(mempool_locks_reorg)
|
||||||
{
|
{
|
||||||
bool ignored;
|
bool ignored;
|
||||||
auto ProcessBlock = [&](std::shared_ptr<const CBlock> block) -> bool {
|
auto ProcessBlock = [&](std::shared_ptr<const CBlock> block) -> bool {
|
||||||
return Assert(m_node.chainman)->ProcessNewBlock(Params(), block, /* fForceProcessing */ true, /* fNewBlock */ &ignored);
|
return Assert(m_node.chainman)->ProcessNewBlock(Params(), block, /*force_processing=*/true, /*new_block=*/&ignored);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Process all mined blocks
|
// Process all mined blocks
|
||||||
|
|
Loading…
Reference in a new issue