mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Merge #8271: [bugfix] Do not send witnesses in cmpctblock
252675e
Do not send witnesses in cmpctblock (Pieter Wuille)
This commit is contained in:
commit
1bc9c8085f
1 changed files with 1 additions and 1 deletions
|
@ -6469,7 +6469,7 @@ bool SendMessages(CNode* pto)
|
|||
CBlock block;
|
||||
assert(ReadBlockFromDisk(block, pBestIndex, consensusParams));
|
||||
CBlockHeaderAndShortTxIDs cmpctblock(block);
|
||||
pto->PushMessage(NetMsgType::CMPCTBLOCK, cmpctblock);
|
||||
pto->PushMessageWithFlag(SERIALIZE_TRANSACTION_NO_WITNESS, NetMsgType::CMPCTBLOCK, cmpctblock);
|
||||
state.pindexBestHeaderSent = pBestIndex;
|
||||
} else if (state.fPreferHeaders) {
|
||||
if (vHeaders.size() > 1) {
|
||||
|
|
Loading…
Reference in a new issue