aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-03-21 12:43:15 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2016-03-21 12:44:19 +0100
commit9426632cb58d0fc4c63c3c6d0c83fd62e525bd28 (patch)
treec24bc3ffa5ef5081601fe0d2314d041b3a61d745 /src/main.cpp
parentddfd79659e31a41de4e9b824767b766116798a90 (diff)
parentc90036f6645dea7c19e033c11240567371407017 (diff)
downloadbitcoin-9426632cb58d0fc4c63c3c6d0c83fd62e525bd28.tar.xz
Merge #7708: De-neuter NODE_BLOOM
c90036f Always disconnect old nodes which request filtered connections. (Patrick Strateman)
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 1bc88326b6..16b26444dc 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4482,7 +4482,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
if (pfrom->nVersion >= NO_BLOOM_VERSION) {
Misbehaving(pfrom->GetId(), 100);
return false;
- } else if (GetBoolArg("-enforcenodebloom", DEFAULT_ENFORCENODEBLOOM)) {
+ } else {
pfrom->fDisconnect = true;
return false;
}