|
|
|
@ -5048,8 +5048,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
@@ -5048,8 +5048,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
|
|
|
|
|
|
|
|
|
|
if (!(pfrom->GetLocalServices() & NODE_BLOOM) && |
|
|
|
|
(strCommand == NetMsgType::FILTERLOAD || |
|
|
|
|
strCommand == NetMsgType::FILTERADD || |
|
|
|
|
strCommand == NetMsgType::FILTERCLEAR)) |
|
|
|
|
strCommand == NetMsgType::FILTERADD)) |
|
|
|
|
{ |
|
|
|
|
if (pfrom->nVersion >= NO_BLOOM_VERSION) { |
|
|
|
|
LOCK(cs_main); |
|
|
|
@ -6275,8 +6274,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
@@ -6275,8 +6274,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
|
|
|
|
|
else if (strCommand == NetMsgType::FILTERCLEAR) |
|
|
|
|
{ |
|
|
|
|
LOCK(pfrom->cs_filter); |
|
|
|
|
delete pfrom->pfilter; |
|
|
|
|
pfrom->pfilter = new CBloomFilter(); |
|
|
|
|
if (pfrom->GetLocalServices() & NODE_BLOOM) { |
|
|
|
|
delete pfrom->pfilter; |
|
|
|
|
pfrom->pfilter = new CBloomFilter(); |
|
|
|
|
} |
|
|
|
|
pfrom->fRelayTxes = true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|