test: Remove from_node from create_self_transfer* MiniWallet helpers

The from_node argument is no longer used as of commit
a55606c3bd
This commit is contained in:
MacroFake
2022-06-21 11:25:54 +02:00
parent b178807265
commit fa8421bc5b
8 changed files with 20 additions and 22 deletions

View File

@ -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)