Common argument defaults for NODE_BLOOM stuff and -wallet

This commit is contained in:
Luke Dashjr
2016-02-11 06:35:25 +00:00
parent 3cd836c1d8
commit 1fb91b3496
3 changed files with 11 additions and 6 deletions

View File

@@ -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;
}