Disable BIP152

This commit is contained in:
lateminer
2019-03-08 23:13:53 +03:00
parent 7e60659f73
commit 2e32c7fd02
8 changed files with 119 additions and 11 deletions

View File

@@ -35,10 +35,13 @@ const char *FILTERCLEAR="filterclear";
const char *REJECT="reject";
const char *SENDHEADERS="sendheaders";
const char *FEEFILTER="feefilter";
/*
// Disable BIP152
const char *SENDCMPCT="sendcmpct";
const char *CMPCTBLOCK="cmpctblock";
const char *GETBLOCKTXN="getblocktxn";
const char *BLOCKTXN="blocktxn";
*/
};
/** All known message types. Keep this in the same order as the list of
@@ -67,10 +70,13 @@ const static std::string allNetMessageTypes[] = {
NetMsgType::REJECT,
NetMsgType::SENDHEADERS,
NetMsgType::FEEFILTER,
/*
// Disable BIP152
NetMsgType::SENDCMPCT,
NetMsgType::CMPCTBLOCK,
NetMsgType::GETBLOCKTXN,
NetMsgType::BLOCKTXN,
*/
};
const static std::vector<std::string> allNetMessageTypesVec(allNetMessageTypes, allNetMessageTypes+ARRAYLEN(allNetMessageTypes));
@@ -171,7 +177,10 @@ std::string CInv::GetCommand() const
case MSG_TX: return cmd.append(NetMsgType::TX);
case MSG_BLOCK: return cmd.append(NetMsgType::BLOCK);
case MSG_FILTERED_BLOCK: return cmd.append(NetMsgType::MERKLEBLOCK);
/*
// Disable BIP152
case MSG_CMPCT_BLOCK: return cmd.append(NetMsgType::CMPCTBLOCK);
*/
default:
throw std::out_of_range(strprintf("CInv::GetCommand(): type=%d unknown type", type));
}