From 36bd7f9a0f14b79e889715a05d71be1035f2a96b Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Fri, 9 Aug 2019 16:56:23 -0700 Subject: [PATCH] Send BIP37 fRelay as false --- bitcoin.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bitcoin.cpp b/bitcoin.cpp index 9ccbabf..6b61089 100644 --- a/bitcoin.cpp +++ b/bitcoin.cpp @@ -81,7 +81,8 @@ class CNode { BeginMessage("version"); int nBestHeight = GetRequireHeight(); string ver = "/bitcoin-seeder:0.01/"; - vSend << PROTOCOL_VERSION << nLocalServices << nTime << you << me << nLocalNonce << ver << nBestHeight; + uint8_t fRelayTxs = 0; + vSend << PROTOCOL_VERSION << nLocalServices << nTime << you << me << nLocalNonce << ver << nBestHeight << fRelayTxs; EndMessage(); }