test: Remove MiniWallet mempool_valid option

This commit is contained in:
MacroFake
2022-06-13 14:08:12 +02:00
parent 506d9b25a3
commit fa779de665
8 changed files with 11 additions and 18 deletions

View File

@@ -75,7 +75,7 @@ class MempoolLimitTest(BitcoinTestFramework):
# Deliberately try to create a tx with a fee less than the minimum mempool fee to assert that it does not get added to the mempool
self.log.info('Create a mempool tx that will not pass mempoolminfee')
assert_raises_rpc_error(-26, "mempool min fee not met", miniwallet.send_self_transfer, from_node=node, fee_rate=relayfee, mempool_valid=False)
assert_raises_rpc_error(-26, "mempool min fee not met", miniwallet.send_self_transfer, from_node=node, fee_rate=relayfee)
if __name__ == '__main__':