Skip to content

Commit

Permalink
test: Pass self to test_simple_bumpfee_succeeds
Browse files Browse the repository at this point in the history
Needed for a future scripted diff
  • Loading branch information
MarcoFalke committed Apr 9, 2019
1 parent fa6dc7c commit faf77f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/wallet_bumpfee.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def run_test(self):

self.log.info("Running tests")
dest_address = peer_node.getnewaddress()
test_simple_bumpfee_succeeds(rbf_node, peer_node, dest_address)
test_simple_bumpfee_succeeds(self, rbf_node, peer_node, dest_address)
test_segwit_bumpfee_succeeds(rbf_node, dest_address)
test_nonrbf_bumpfee_fails(peer_node, dest_address)
test_notmine_bumpfee_fails(rbf_node, peer_node, dest_address)
Expand All @@ -76,7 +76,7 @@ def run_test(self):
self.log.info("Success")


def test_simple_bumpfee_succeeds(rbf_node, peer_node, dest_address):
def test_simple_bumpfee_succeeds(self, rbf_node, peer_node, dest_address):
rbfid = spend_one_input(rbf_node, dest_address)
rbftx = rbf_node.gettransaction(rbfid)
sync_mempools((rbf_node, peer_node))
Expand Down

0 comments on commit faf77f9

Please sign in to comment.