diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-03-21 12:43:15 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-03-21 12:44:19 +0100 |
| commit | 9426632cb58d0fc4c63c3c6d0c83fd62e525bd28 (patch) | |
| tree | c24bc3ffa5ef5081601fe0d2314d041b3a61d745 /src/main.cpp | |
| parent | Merge #7705: [amount] Add tests and make GetFee() monotonic (diff) | |
| parent | Always disconnect old nodes which request filtered connections. (diff) | |
| download | discoin-9426632cb58d0fc4c63c3c6d0c83fd62e525bd28.tar.xz discoin-9426632cb58d0fc4c63c3c6d0c83fd62e525bd28.zip | |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 1bc88326b..16b26444d 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; } |