aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2016-02-11 06:35:25 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2016-02-11 06:38:04 +0000
commit1fb91b3496f2f07bbace1f9f8e716f7f62d889e6 (patch)
treecc508cf26e8a28a163a6439e83fd7118b92b2665 /src/main.cpp
parent3cd836c1d855b92e7c73ab31979f471c4f8dad68 (diff)
downloadbitcoin-1fb91b3496f2f07bbace1f9f8e716f7f62d889e6.tar.xz
Common argument defaults for NODE_BLOOM stuff and -wallet
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 cb3f8f39f8..12c349a650 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4276,7 +4276,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;
}