aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorbitsofproof <tamas@bitsofproof.com>2013-06-11 23:10:22 +0200
committerbitsofproof <tamas@bitsofproof.com>2013-06-11 23:29:41 +0200
commitc87f462b74fe94ddf7ac1018c399bb9772776e16 (patch)
treecc2cee5d9acc2b35a8aa94f2a0de8997bed33ac7 /src/net.cpp
parentd1020b780a1493c6a709f70756b2af54a7126f40 (diff)
downloadbitcoin-c87f462b74fe94ddf7ac1018c399bb9772776e16.tar.xz
send tx relay flag with version
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 1f8b39ac98..1d181823e2 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -533,7 +533,7 @@ void CNode::PushVersion()
RAND_bytes((unsigned char*)&nLocalHostNonce, sizeof(nLocalHostNonce));
printf("send version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", PROTOCOL_VERSION, nBestHeight, addrMe.ToString().c_str(), addrYou.ToString().c_str(), addr.ToString().c_str());
PushMessage("version", PROTOCOL_VERSION, nLocalServices, nTime, addrYou, addrMe,
- nLocalHostNonce, FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<string>()), nBestHeight);
+ nLocalHostNonce, FormatSubVersion(CLIENT_NAME, CLIENT_VERSION, std::vector<string>()), nBestHeight, true);
}