aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_rawtransaction.py
diff options
context:
space:
mode:
authorMacroFake <falke.marco@gmail.com>2022-06-13 14:08:12 +0200
committerMacroFake <falke.marco@gmail.com>2022-06-13 18:09:16 +0200
commitfa779de665227cf15a4056959e9753618cc013ac (patch)
tree9877cfa3654132d0f1e44d1b685eec1221d25ec1 /test/functional/rpc_rawtransaction.py
parent506d9b25a3f8ef8a4ce63f989083803d8d4ae6df (diff)
downloadbitcoin-fa779de665227cf15a4056959e9753618cc013ac.tar.xz
test: Remove MiniWallet mempool_valid option
Diffstat (limited to 'test/functional/rpc_rawtransaction.py')
-rwxr-xr-xtest/functional/rpc_rawtransaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_rawtransaction.py b/test/functional/rpc_rawtransaction.py
index 1f95814e18..dee6d777af 100755
--- a/test/functional/rpc_rawtransaction.py
+++ b/test/functional/rpc_rawtransaction.py
@@ -285,7 +285,7 @@ class RawTransactionsTest(BitcoinTestFramework):
# Test a transaction with a large fee.
# Fee rate is 0.20000000 BTC/kvB
- tx = self.wallet.create_self_transfer(mempool_valid=False, from_node=self.nodes[0], fee_rate=Decimal('0.20000000'))
+ tx = self.wallet.create_self_transfer(from_node=self.nodes[0], fee_rate=Decimal("0.20000000"))
# Thus, testmempoolaccept should reject
testres = self.nodes[2].testmempoolaccept([tx['hex']])[0]
assert_equal(testres['allowed'], False)