aboutsummaryrefslogtreecommitdiff
path: root/test/functional/p2p_segwit.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/p2p_segwit.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/p2p_segwit.py')
-rwxr-xr-xtest/functional/p2p_segwit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py
index 89ddfd3bcf..952f1e5cc5 100755
--- a/test/functional/p2p_segwit.py
+++ b/test/functional/p2p_segwit.py
@@ -1998,7 +1998,7 @@ class SegWitTest(BitcoinTestFramework):
def serialize(self):
return serialize_with_bogus_witness(self.tx)
- tx = self.wallet.create_self_transfer(from_node=self.nodes[0])['tx']
+ tx = self.wallet.create_self_transfer()['tx']
assert_raises_rpc_error(-22, "TX decode failed", self.nodes[0].decoderawtransaction, hexstring=serialize_with_bogus_witness(tx).hex(), iswitness=True)
with self.nodes[0].assert_debug_log(['Unknown transaction optional data']):
self.test_node.send_and_ping(msg_bogus_tx(tx))