aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-09-15 11:10:51 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-11-17 09:25:14 +0100
commitfac49470ca36ff944a613f4358386bf8e0967427 (patch)
treedcc31a3b3ffa738c68720f09198001263b1963c0 /src/net.cpp
parent398fd63356db9023665396c371d67a8c76edeb4d (diff)
downloadbitcoin-fac49470ca36ff944a613f4358386bf8e0967427.tar.xz
doc: Fix incorrect C++ named args
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 82e55d4189..d1f1b54007 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -3024,7 +3024,7 @@ void CConnman::PushMessage(CNode* pnode, CSerializedNetMsg&& msg)
size_t nMessageSize = msg.data.size();
LogPrint(BCLog::NET, "sending %s (%d bytes) peer=%d\n", msg.m_type, nMessageSize, pnode->GetId());
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,