Skip to content

Commit 9e711be

Browse files
committed
More of 13946
1 parent e5e3572 commit 9e711be

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/net_processing.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2105,18 +2105,20 @@ bool static ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStr
21052105
}
21062106

21072107

2108-
else if (strCommand == NetMsgType::SENDDSQUEUE)
2108+
if (strCommand == NetMsgType::SENDDSQUEUE)
21092109
{
21102110
bool b;
21112111
vRecv >> b;
21122112
pfrom->fSendDSQueue = b;
2113+
return true;
21132114
}
21142115

21152116

2116-
else if (strCommand == NetMsgType::QSENDRECSIGS) {
2117+
if (strCommand == NetMsgType::QSENDRECSIGS) {
21172118
bool b;
21182119
vRecv >> b;
21192120
pfrom->fSendRecSigs = b;
2121+
return true;
21202122
}
21212123

21222124
if (strCommand == NetMsgType::INV) {
@@ -2598,7 +2600,7 @@ bool static ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStr
25982600
return true;
25992601
}
26002602

2601-
if (strCommand == NetMsgType::CMPCTBLOCK && !fImporting && !fReindex) // Ignore blocks received while importing
2603+
if (strCommand == NetMsgType::CMPCTBLOCK && !fImporting && !fReindex) // Ignore blocks received while importing
26022604
{
26032605
CBlockHeaderAndShortTxIDs cmpctblock;
26042606
vRecv >> cmpctblock;

0 commit comments

Comments
 (0)