diff options
| author | bitsofproof <[email protected]> | 2013-06-11 23:10:22 +0200 |
|---|---|---|
| committer | bitsofproof <[email protected]> | 2013-06-11 23:29:41 +0200 |
| commit | c87f462b74fe94ddf7ac1018c399bb9772776e16 (patch) | |
| tree | cc2cee5d9acc2b35a8aa94f2a0de8997bed33ac7 /src/net.cpp | |
| parent | Merge pull request #2553 from Diapolo/threads (diff) | |
| download | discoin-c87f462b74fe94ddf7ac1018c399bb9772776e16.tar.xz discoin-c87f462b74fe94ddf7ac1018c399bb9772776e16.zip | |
send tx relay flag with version
Diffstat (limited to 'src/net.cpp')
| -rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index 1f8b39ac9..1d181823e 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); } |