diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2016-02-11 06:35:25 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2016-02-11 06:38:04 +0000 |
commit | 1fb91b3496f2f07bbace1f9f8e716f7f62d889e6 (patch) | |
tree | cc508cf26e8a28a163a6439e83fd7118b92b2665 /src/main.cpp | |
parent | 3cd836c1d855b92e7c73ab31979f471c4f8dad68 (diff) |
Common argument defaults for NODE_BLOOM stuff and -wallet
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 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; } |