diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-02-16 09:47:45 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-02-16 10:00:21 +0100 |
| commit | 2d4f73f47e527520a541880c855220b9d5857f47 (patch) | |
| tree | d4444f7c6b2824f8a29ba8b4514bdc3934d2d157 /src/main.cpp | |
| parent | Merge #7536: test: test leading spaces for ParseHex (diff) | |
| parent | Common argument defaults for NODE_BLOOM stuff and -wallet (diff) | |
| download | discoin-2d4f73f47e527520a541880c855220b9d5857f47.tar.xz discoin-2d4f73f47e527520a541880c855220b9d5857f47.zip | |
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.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 6398fdad9..2df91706c 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; } |