Disable -peerbloomfilters by default in sidechains

Removes Denial of Service risk on a network that will likely never
have light wallets.  User can enable it again if they reallly want it.
This commit is contained in:
Warren Togami 2016-04-21 18:35:27 -07:00 committed by Gregory Sanders
parent 10249053d0
commit baa3b0c5cc
2 changed files with 2 additions and 2 deletions

View file

@ -5184,7 +5184,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
LOCK(cs_main);
Misbehaving(pfrom->GetId(), 100);
return false;
} else {
} else if (GetBoolArg("-enforcenodebloom", true)) {
pfrom->fDisconnect = true;
return false;
}