mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-16 03:43:04 +02:00
disallow oversized CBlockHeaderAndShortTxIDs
Otherwise we'd reply with a bogus BlockTransactionsRequest trying to request indexes with overflowed deltas.
This commit is contained in:
parent
6bed4b374d
commit
b08af10fb2
@ -186,6 +186,9 @@ public:
|
|||||||
|
|
||||||
READWRITE(prefilledtxn);
|
READWRITE(prefilledtxn);
|
||||||
|
|
||||||
|
if (BlockTxCount() > std::numeric_limits<uint16_t>::max())
|
||||||
|
throw std::ios_base::failure("indexes overflowed 16 bits");
|
||||||
|
|
||||||
if (ser_action.ForRead())
|
if (ser_action.ForRead())
|
||||||
FillShortTxIDSelector();
|
FillShortTxIDSelector();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user