Skip to content

Commit 425278d

Browse files
committed
Merge #8102: Bugfix: use global ::fRelayTxes instead of CNode in version send
52b02ec Use global ::fRelayTxes instead of CNode one (Pieter Wuille)
2 parents c028c7b + 52b02ec commit 425278d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/net.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ void CNode::PushVersion()
471471
else
472472
LogPrint("net", "send version message: version %d, blocks=%d, us=%s, peer=%d\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString(), id);
473473
PushMessage(NetMsgType::VERSION, PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe,
474-
nLocalHostNonce, strSubVersion, nBestHeight, fRelayTxes);
474+
nLocalHostNonce, strSubVersion, nBestHeight, ::fRelayTxes);
475475
}
476476

477477

0 commit comments

Comments
 (0)