diff options
| author | Pieter Wuille <[email protected]> | 2013-06-17 01:43:11 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2013-06-17 01:43:11 -0700 |
| commit | 5e6f7cc8adc00a8cf391a33440c127284be6da35 (patch) | |
| tree | 47d5f76841d867ce88410b8de147c959e69dcedf /src/net.cpp | |
| parent | Merge pull request #2648 from Diapolo/txindex (diff) | |
| parent | send tx relay flag with version (diff) | |
| download | discoin-5e6f7cc8adc00a8cf391a33440c127284be6da35.tar.xz discoin-5e6f7cc8adc00a8cf391a33440c127284be6da35.zip | |
Merge pull request #2763 from bitsofproof/master
Send tx relay flag with version message
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); } |