aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-05-26 18:44:14 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2016-05-26 20:04:43 +0200
commit52b02ecd6d7ce918676c76c725678cf0ae2561d2 (patch)
tree77fa6391848e8889a3c9fe533d4d27870a284f71 /src/net.cpp
parentc028c7b7557da2baff7af8840108e8be4db8e0c6 (diff)
downloadbitcoin-52b02ecd6d7ce918676c76c725678cf0ae2561d2.tar.xz
Use global ::fRelayTxes instead of CNode one
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 44cdfd2ae2..a0c670e595 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -471,7 +471,7 @@ void CNode::PushVersion()
else
LogPrint("net", "send version message: version %d, blocks=%d, us=%s, peer=%d\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString(), id);
PushMessage(NetMsgType::VERSION, PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe,
- nLocalHostNonce, strSubVersion, nBestHeight, fRelayTxes);
+ nLocalHostNonce, strSubVersion, nBestHeight, ::fRelayTxes);
}