Do not send witnesses in cmpctblock
This commit is contained in:
parent
1922e5a654
commit
252675efc6
1 changed files with 1 additions and 1 deletions
|
@ -6538,7 +6538,7 @@ bool SendMessages(CNode* pto)
|
||||||
CBlock block;
|
CBlock block;
|
||||||
assert(ReadBlockFromDisk(block, pBestIndex, consensusParams));
|
assert(ReadBlockFromDisk(block, pBestIndex, consensusParams));
|
||||||
CBlockHeaderAndShortTxIDs cmpctblock(block);
|
CBlockHeaderAndShortTxIDs cmpctblock(block);
|
||||||
pto->PushMessage(NetMsgType::CMPCTBLOCK, cmpctblock);
|
pto->PushMessageWithFlag(SERIALIZE_TRANSACTION_NO_WITNESS, NetMsgType::CMPCTBLOCK, cmpctblock);
|
||||||
state.pindexBestHeaderSent = pBestIndex;
|
state.pindexBestHeaderSent = pBestIndex;
|
||||||
} else if (state.fPreferHeaders) {
|
} else if (state.fPreferHeaders) {
|
||||||
if (vHeaders.size() > 1) {
|
if (vHeaders.size() > 1) {
|
||||||
|
|
Loading…
Reference in a new issue