tests: ensure functional tests set permitbaremultisig=1 when needed

The mempool_dust and mempool_sigoplimits functional tests both use bare
multisig txs, so ensure they're allowed by policy.
This commit is contained in:
Anthony Towns
2023-12-15 16:11:11 +10:00
parent 7dfabdcf86
commit 7b45744df3
2 changed files with 3 additions and 2 deletions

View File

@@ -140,7 +140,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"] + self.extra_args[0])
self.restart_node(0, extra_args=["-bytespersigop=5000","-permitbaremultisig=1"] + self.extra_args[0])
def create_bare_multisig_tx(utxo_to_spend=None):
_, pubkey = generate_keypair()