doc: Fix incorrect C++ named args

This commit is contained in:
MarcoFalke 2021-09-15 11:10:51 +02:00
parent 398fd63356
commit fac49470ca
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
10 changed files with 29 additions and 29 deletions

View file

@ -4105,7 +4105,7 @@ bool PeerManagerImpl::ProcessMessages(CNode* pfrom, std::atomic<bool>& interrupt
);
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());