Skip to content

Commit faf77f9

Browse files
author
MarcoFalke
committed
test: Pass self to test_simple_bumpfee_succeeds
Needed for a future scripted diff
1 parent fa6dc7c commit faf77f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/functional/wallet_bumpfee.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def run_test(self):
6060

6161
self.log.info("Running tests")
6262
dest_address = peer_node.getnewaddress()
63-
test_simple_bumpfee_succeeds(rbf_node, peer_node, dest_address)
63+
test_simple_bumpfee_succeeds(self, rbf_node, peer_node, dest_address)
6464
test_segwit_bumpfee_succeeds(rbf_node, dest_address)
6565
test_nonrbf_bumpfee_fails(peer_node, dest_address)
6666
test_notmine_bumpfee_fails(rbf_node, peer_node, dest_address)
@@ -76,7 +76,7 @@ def run_test(self):
7676
self.log.info("Success")
7777

7878

79-
def test_simple_bumpfee_succeeds(rbf_node, peer_node, dest_address):
79+
def test_simple_bumpfee_succeeds(self, rbf_node, peer_node, dest_address):
8080
rbfid = spend_one_input(rbf_node, dest_address)
8181
rbftx = rbf_node.gettransaction(rbfid)
8282
sync_mempools((rbf_node, peer_node))

0 commit comments

Comments
 (0)