aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-02-16 09:47:45 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2016-02-16 10:00:21 +0100
commit2d4f73f47e527520a541880c855220b9d5857f47 (patch)
treed4444f7c6b2824f8a29ba8b4514bdc3934d2d157 /src/main.cpp
parentce5fc02e61c8700e22601a1861295be6c4a41d74 (diff)
parent1fb91b3496f2f07bbace1f9f8e716f7f62d889e6 (diff)
Merge #7509: Common argument defaults for NODE_BLOOM stuff and -wallet
1fb91b3 Common argument defaults for NODE_BLOOM stuff and -wallet (Luke Dashjr)
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 6398fdad9a..2df91706c5 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4374,7 +4374,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", false)) {
+ } else if (GetBoolArg("-enforcenodebloom", DEFAULT_ENFORCENODEBLOOM)) {
pfrom->fDisconnect = true;
return false;
}