Remove -enforcenodebloom

This commit is contained in:
Luke Dashjr
2016-02-11 06:35:25 +00:00
committed by lateminer
parent afa46b1aef
commit 7828e48b69
2 changed files with 1 additions and 3 deletions

View File

@@ -4970,7 +4970,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 {
pfrom->fDisconnect = true;
return false;
}