aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_rawtransaction.py
diff options
context:
space:
mode:
authorMacroFake <falke.marco@gmail.com>2022-06-21 11:25:54 +0200
committerMacroFake <falke.marco@gmail.com>2022-06-21 12:02:01 +0200
commitfa8421bc5bcd483a9501257073db17ff2e76eb46 (patch)
tree8cefc52e9e3524b1fae7184657cbd72d5919f55f /test/functional/rpc_rawtransaction.py
parentb1788072657d17070fc9adcc2fa1201a8c8acdf8 (diff)
downloadbitcoin-fa8421bc5bcd483a9501257073db17ff2e76eb46.tar.xz
test: Remove from_node from create_self_transfer* MiniWallet helpers
The from_node argument is no longer used as of commit a55606c3bdbfdf660b093bc2a618d537ffae7f26
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 dee6d777af..26a5da85b7 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(from_node=self.nodes[0], fee_rate=Decimal("0.20000000"))
+ tx = self.wallet.create_self_transfer(fee_rate=Decimal("0.20000000"))
# Thus, testmempoolaccept should reject
testres = self.nodes[2].testmempoolaccept([tx['hex']])[0]
assert_equal(testres['allowed'], False)