mirror of https://github.com/bitcoin/bitcoin.git
test: remove unnecessary -datacarriersize args from tests
This commit is contained in:
parent
9f36962b07
commit
63091b79e7
|
@ -23,7 +23,6 @@ class BlocksXORTest(BitcoinTestFramework):
|
|||
self.extra_args = [[
|
||||
'-blocksxor=1',
|
||||
'-fastprune=1', # use smaller block files
|
||||
'-datacarriersize=100000', # needed to pad transaction with MiniWallet
|
||||
]]
|
||||
|
||||
def run_test(self):
|
||||
|
|
|
@ -51,7 +51,6 @@ class MaxUploadTest(BitcoinTestFramework):
|
|||
self.num_nodes = 1
|
||||
self.extra_args = [[
|
||||
f"-maxuploadtarget={UPLOAD_TARGET_MB}M",
|
||||
"-datacarriersize=100000",
|
||||
]]
|
||||
self.supports_cli = False
|
||||
|
||||
|
|
|
@ -29,7 +29,6 @@ class MempoolLimitTest(BitcoinTestFramework):
|
|||
self.setup_clean_chain = True
|
||||
self.num_nodes = 1
|
||||
self.extra_args = [[
|
||||
"-datacarriersize=100000",
|
||||
"-maxmempool=5",
|
||||
]]
|
||||
self.supports_cli = False
|
||||
|
|
|
@ -51,9 +51,6 @@ class MempoolPackageLimitsTest(BitcoinTestFramework):
|
|||
self.test_anc_count_limits()
|
||||
self.test_anc_count_limits_2()
|
||||
self.test_anc_count_limits_bushy()
|
||||
|
||||
# The node will accept (nonstandard) extra large OP_RETURN outputs
|
||||
self.restart_node(0, extra_args=["-datacarriersize=100000"])
|
||||
self.test_anc_size_limits()
|
||||
self.test_desc_size_limits()
|
||||
|
||||
|
|
|
@ -33,7 +33,6 @@ class PackageRBFTest(BitcoinTestFramework):
|
|||
self.setup_clean_chain = True
|
||||
# Required for fill_mempool()
|
||||
self.extra_args = [[
|
||||
"-datacarriersize=100000",
|
||||
"-maxmempool=5",
|
||||
]] * self.num_nodes
|
||||
|
||||
|
|
|
@ -44,8 +44,6 @@ MAX_PUBKEYS_PER_MULTISIG = 20
|
|||
class BytesPerSigOpTest(BitcoinTestFramework):
|
||||
def set_test_params(self):
|
||||
self.num_nodes = 1
|
||||
# allow large datacarrier output to pad transactions
|
||||
self.extra_args = [['-datacarriersize=100000']]
|
||||
|
||||
def create_p2wsh_spending_tx(self, witness_script, output_script):
|
||||
"""Create a 1-input-1-output P2WSH spending transaction with only the
|
||||
|
@ -139,7 +137,7 @@ class BytesPerSigOpTest(BitcoinTestFramework):
|
|||
self.log.info("Test a overly-large sigops-vbyte hits package limits")
|
||||
# Make a 2-transaction package which fails vbyte checks even though
|
||||
# separately they would work.
|
||||
self.restart_node(0, extra_args=["-bytespersigop=5000","-permitbaremultisig=1"] + self.extra_args[0])
|
||||
self.restart_node(0, extra_args=["-bytespersigop=5000","-permitbaremultisig=1"])
|
||||
|
||||
def create_bare_multisig_tx(utxo_to_spend=None):
|
||||
_, pubkey = generate_keypair()
|
||||
|
@ -185,7 +183,7 @@ class BytesPerSigOpTest(BitcoinTestFramework):
|
|||
else:
|
||||
bytespersigop_parameter = f"-bytespersigop={bytes_per_sigop}"
|
||||
self.log.info(f"Test sigops limit setting {bytespersigop_parameter}...")
|
||||
self.restart_node(0, extra_args=[bytespersigop_parameter] + self.extra_args[0])
|
||||
self.restart_node(0, extra_args=[bytespersigop_parameter])
|
||||
|
||||
for num_sigops in (69, 101, 142, 183, 222):
|
||||
self.test_sigops_limit(bytes_per_sigop, num_sigops)
|
||||
|
|
|
@ -49,7 +49,7 @@ class MempoolTRUC(BitcoinTestFramework):
|
|||
assert_equal(len(txids), len(mempool_contents))
|
||||
assert all([txid in txids for txid in mempool_contents])
|
||||
|
||||
@cleanup(extra_args=["-datacarriersize=20000"])
|
||||
@cleanup()
|
||||
def test_truc_max_vsize(self):
|
||||
node = self.nodes[0]
|
||||
self.log.info("Test TRUC-specific maximum transaction vsize")
|
||||
|
@ -63,7 +63,7 @@ class MempoolTRUC(BitcoinTestFramework):
|
|||
tx_v2_heavy = self.wallet.send_self_transfer(from_node=node, target_vsize=TRUC_MAX_VSIZE + 1, version=2)
|
||||
self.check_mempool([tx_v2_heavy["txid"]])
|
||||
|
||||
@cleanup(extra_args=["-datacarriersize=1000"])
|
||||
@cleanup()
|
||||
def test_truc_acceptance(self):
|
||||
node = self.nodes[0]
|
||||
self.log.info("Test a child of a TRUC transaction cannot be more than 1000vB")
|
||||
|
@ -160,7 +160,7 @@ class MempoolTRUC(BitcoinTestFramework):
|
|||
self.check_mempool([tx_v3_bip125_rbf_v2["txid"], tx_v3_parent["txid"], tx_v3_child["txid"]])
|
||||
|
||||
|
||||
@cleanup(extra_args=["-datacarriersize=40000"])
|
||||
@cleanup()
|
||||
def test_truc_reorg(self):
|
||||
node = self.nodes[0]
|
||||
self.log.info("Test that, during a reorg, TRUC rules are not enforced")
|
||||
|
@ -182,7 +182,7 @@ class MempoolTRUC(BitcoinTestFramework):
|
|||
node.reconsiderblock(block[0])
|
||||
|
||||
|
||||
@cleanup(extra_args=["-limitdescendantsize=10", "-datacarriersize=40000"])
|
||||
@cleanup(extra_args=["-limitdescendantsize=10"])
|
||||
def test_nondefault_package_limits(self):
|
||||
"""
|
||||
Max standard tx size + TRUC rules imply the ancestor/descendant rules (at their default
|
||||
|
@ -215,7 +215,7 @@ class MempoolTRUC(BitcoinTestFramework):
|
|||
self.generate(node, 1)
|
||||
|
||||
self.log.info("Test that a decreased limitancestorsize also applies to v3 parent")
|
||||
self.restart_node(0, extra_args=["-limitancestorsize=10", "-datacarriersize=40000"])
|
||||
self.restart_node(0, extra_args=["-limitancestorsize=10"])
|
||||
tx_v3_parent_large2 = self.wallet.send_self_transfer(
|
||||
from_node=node,
|
||||
target_vsize=parent_target_vsize,
|
||||
|
@ -235,7 +235,7 @@ class MempoolTRUC(BitcoinTestFramework):
|
|||
assert_raises_rpc_error(-26, "too-long-mempool-chain, exceeds ancestor size limit", node.sendrawtransaction, tx_v3_child_large2["hex"])
|
||||
self.check_mempool([tx_v3_parent_large2["txid"]])
|
||||
|
||||
@cleanup(extra_args=["-datacarriersize=1000"])
|
||||
@cleanup()
|
||||
def test_truc_ancestors_package(self):
|
||||
self.log.info("Test that TRUC ancestor limits are checked within the package")
|
||||
node = self.nodes[0]
|
||||
|
@ -384,7 +384,7 @@ class MempoolTRUC(BitcoinTestFramework):
|
|||
assert_equal(result_package_cpfp["tx-results"][tx_sibling_3['wtxid']]['error'], expected_error_cpfp)
|
||||
|
||||
|
||||
@cleanup(extra_args=["-datacarriersize=1000"])
|
||||
@cleanup()
|
||||
def test_truc_package_inheritance(self):
|
||||
self.log.info("Test that TRUC inheritance is checked within package")
|
||||
node = self.nodes[0]
|
||||
|
|
|
@ -28,7 +28,7 @@ class MempoolUpdateFromBlockTest(BitcoinTestFramework):
|
|||
def set_test_params(self):
|
||||
self.num_nodes = 1
|
||||
# Ancestor and descendant limits depend on transaction_graph_test requirements
|
||||
self.extra_args = [['-limitdescendantsize=1000', '-limitancestorsize=1000', f'-limitancestorcount={CUSTOM_ANCESTOR_COUNT}', f'-limitdescendantcount={CUSTOM_DESCENDANT_COUNT}', '-datacarriersize=100000']]
|
||||
self.extra_args = [['-limitdescendantsize=1000', '-limitancestorsize=1000', f'-limitancestorcount={CUSTOM_ANCESTOR_COUNT}', f'-limitdescendantcount={CUSTOM_DESCENDANT_COUNT}']]
|
||||
|
||||
def create_empty_fork(self, fork_length):
|
||||
'''
|
||||
|
|
|
@ -187,6 +187,9 @@ class MiningTest(BitcoinTestFramework):
|
|||
assert tx_below_min_feerate['txid'] not in block_template_txids
|
||||
assert tx_below_min_feerate['txid'] not in block_txids
|
||||
|
||||
# Restart node to clear mempool for the next test
|
||||
self.restart_node(0)
|
||||
|
||||
def test_timewarp(self):
|
||||
self.log.info("Test timewarp attack mitigation (BIP94)")
|
||||
node = self.nodes[0]
|
||||
|
@ -280,11 +283,9 @@ class MiningTest(BitcoinTestFramework):
|
|||
def test_block_max_weight(self):
|
||||
self.log.info("Testing default and custom -blockmaxweight startup options.")
|
||||
|
||||
# Restart the node to allow large transactions
|
||||
LARGE_TXS_COUNT = 10
|
||||
LARGE_VSIZE = int(((MAX_BLOCK_WEIGHT - DEFAULT_BLOCK_RESERVED_WEIGHT) / WITNESS_SCALE_FACTOR) / LARGE_TXS_COUNT)
|
||||
HIGH_FEERATE = Decimal("0.0003")
|
||||
self.restart_node(0, extra_args=[f"-datacarriersize={LARGE_VSIZE}"])
|
||||
|
||||
# Ensure the mempool is empty
|
||||
assert_equal(len(self.nodes[0].getrawmempool()), 0)
|
||||
|
@ -312,7 +313,7 @@ class MiningTest(BitcoinTestFramework):
|
|||
# Test block template creation with custom -blockmaxweight
|
||||
custom_block_weight = MAX_BLOCK_WEIGHT - 2000
|
||||
# Reducing the weight by 2000 units will prevent 1 large transaction from fitting into the block.
|
||||
self.restart_node(0, extra_args=[f"-datacarriersize={LARGE_VSIZE}", f"-blockmaxweight={custom_block_weight}"])
|
||||
self.restart_node(0, extra_args=[f"-blockmaxweight={custom_block_weight}"])
|
||||
|
||||
self.log.info("Testing the block template with custom -blockmaxweight to include 9 large and 2 normal transactions.")
|
||||
self.verify_block_template(
|
||||
|
@ -322,7 +323,7 @@ class MiningTest(BitcoinTestFramework):
|
|||
|
||||
# Ensure the block weight does not exceed the maximum
|
||||
self.log.info(f"Testing that the block weight will never exceed {MAX_BLOCK_WEIGHT - DEFAULT_BLOCK_RESERVED_WEIGHT}.")
|
||||
self.restart_node(0, extra_args=[f"-datacarriersize={LARGE_VSIZE}", f"-blockmaxweight={MAX_BLOCK_WEIGHT}"])
|
||||
self.restart_node(0, extra_args=[f"-blockmaxweight={MAX_BLOCK_WEIGHT}"])
|
||||
self.log.info("Sending 2 additional normal transactions to fill the mempool to the maximum block weight.")
|
||||
self.send_transactions(utxos[LARGE_TXS_COUNT + 2:], NORMAL_FEERATE, NORMAL_VSIZE)
|
||||
self.log.info(f"Testing that the mempool's weight matches the maximum block weight: {MAX_BLOCK_WEIGHT}.")
|
||||
|
@ -336,7 +337,7 @@ class MiningTest(BitcoinTestFramework):
|
|||
|
||||
self.log.info("Test -blockreservedweight startup option.")
|
||||
# Lowering the -blockreservedweight by 4000 will allow for two more transactions.
|
||||
self.restart_node(0, extra_args=[f"-datacarriersize={LARGE_VSIZE}", "-blockreservedweight=4000"])
|
||||
self.restart_node(0, extra_args=["-blockreservedweight=4000"])
|
||||
self.verify_block_template(
|
||||
expected_tx_count=12,
|
||||
expected_weight=MAX_BLOCK_WEIGHT - 4000,
|
||||
|
|
|
@ -27,7 +27,6 @@ class PrioritiseTransactionTest(BitcoinTestFramework):
|
|||
self.num_nodes = 1
|
||||
self.extra_args = [[
|
||||
"-printpriority=1",
|
||||
"-datacarriersize=100000",
|
||||
]] * self.num_nodes
|
||||
self.supports_cli = False
|
||||
|
||||
|
|
|
@ -41,7 +41,6 @@ class PackageRelayTest(BitcoinTestFramework):
|
|||
# hugely speeds up the test, as it involves multiple hops of tx relay.
|
||||
self.noban_tx_relay = True
|
||||
self.extra_args = [[
|
||||
"-datacarriersize=100000",
|
||||
"-maxmempool=5",
|
||||
]] * self.num_nodes
|
||||
self.supports_cli = False
|
||||
|
|
|
@ -59,7 +59,6 @@ class PackageRelayTest(BitcoinTestFramework):
|
|||
self.setup_clean_chain = True
|
||||
self.num_nodes = 1
|
||||
self.extra_args = [[
|
||||
"-datacarriersize=100000",
|
||||
"-maxmempool=5",
|
||||
]]
|
||||
self.supports_cli = False
|
||||
|
|
|
@ -68,7 +68,7 @@ class ConnectionType(Enum):
|
|||
class TxDownloadTest(BitcoinTestFramework):
|
||||
def set_test_params(self):
|
||||
self.num_nodes = 2
|
||||
self.extra_args= [['-datacarriersize=100000', '-maxmempool=5', '-persistmempool=0']] * self.num_nodes
|
||||
self.extra_args= [['-maxmempool=5', '-persistmempool=0']] * self.num_nodes
|
||||
|
||||
def test_tx_requests(self):
|
||||
self.log.info("Test that we request transactions from all our peers, eventually")
|
||||
|
|
|
@ -438,7 +438,6 @@ class RPCPackagesTest(BitcoinTestFramework):
|
|||
# but child is too high fee
|
||||
# Lower mempool limit to make it easier to fill_mempool
|
||||
self.restart_node(0, extra_args=[
|
||||
"-datacarriersize=100000",
|
||||
"-maxmempool=5",
|
||||
"-persistmempool=0",
|
||||
])
|
||||
|
@ -467,7 +466,7 @@ class RPCPackagesTest(BitcoinTestFramework):
|
|||
assert parent["txid"] not in node.getrawmempool()
|
||||
assert child["txid"] not in node.getrawmempool()
|
||||
|
||||
# Reset maxmempool, datacarriersize, reset dynamic mempool minimum feerate, and empty mempool.
|
||||
# Reset maxmempool, reset dynamic mempool minimum feerate, and empty mempool.
|
||||
self.restart_node(0)
|
||||
self.wallet.rescan_utxos()
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ def fill_mempool(test_framework, node, *, tx_sync_fun=None):
|
|||
"""Fill mempool until eviction.
|
||||
|
||||
Allows for simpler testing of scenarios with floating mempoolminfee > minrelay
|
||||
Requires -datacarriersize=100000 and -maxmempool=5 and assumes -minrelaytxfee
|
||||
Requires -maxmempool=5 and assumes -minrelaytxfee
|
||||
is 1 sat/vbyte.
|
||||
To avoid unintentional tx dependencies, the mempool filling txs are created with a
|
||||
tagged ephemeral miniwallet instance.
|
||||
|
|
Loading…
Reference in New Issue