mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Replace hard-coded constant in test
This commit is contained in:
parent
327a31d1a4
commit
969e047cfb
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ from test_framework.messages import (
|
|||
CTxInWitness,
|
||||
CTxOut,
|
||||
MAX_BLOCK_WEIGHT,
|
||||
WITNESS_SCALE_FACTOR,
|
||||
MAX_MONEY,
|
||||
SEQUENCE_FINAL,
|
||||
tx_from_hex,
|
||||
|
@ -228,7 +229,7 @@ class MempoolAcceptanceTest(BitcoinTestFramework):
|
|||
|
||||
self.log.info('A really large transaction')
|
||||
tx = tx_from_hex(raw_tx_reference)
|
||||
tx.vin = [tx.vin[0]] * math.ceil(MAX_BLOCK_WEIGHT // 4 / len(tx.vin[0].serialize()))
|
||||
tx.vin = [tx.vin[0]] * math.ceil((MAX_BLOCK_WEIGHT // WITNESS_SCALE_FACTOR) / len(tx.vin[0].serialize()))
|
||||
self.check_mempool_result(
|
||||
result_expected=[{'txid': tx.rehash(), 'allowed': False, 'reject-reason': 'bad-txns-oversize'}],
|
||||
rawtxs=[tx.serialize().hex()],
|
||||
|
|
Loading…
Add table
Reference in a new issue