diff options
| author | Luke Dashjr <[email protected]> | 2016-02-11 06:35:25 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2016-02-11 06:38:04 +0000 |
| commit | 1fb91b3496f2f07bbace1f9f8e716f7f62d889e6 (patch) | |
| tree | cc508cf26e8a28a163a6439e83fd7118b92b2665 /src/main.cpp | |
| parent | Merge pull request #7158 (diff) | |
| download | discoin-1fb91b3496f2f07bbace1f9f8e716f7f62d889e6.tar.xz discoin-1fb91b3496f2f07bbace1f9f8e716f7f62d889e6.zip | |
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 cb3f8f39f..12c349a65 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; } |