From 85de9d474b13a0e6ad681848e5497d02e00dd644 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Tue, 28 Mar 2017 15:19:52 +0200 Subject: [PATCH] Remove call to gettransaction(...) where the result is unused --- test/functional/bumpfee.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/functional/bumpfee.py b/test/functional/bumpfee.py index 172e41418..c51a75cc2 100755 --- a/test/functional/bumpfee.py +++ b/test/functional/bumpfee.py @@ -196,7 +196,6 @@ def test_dust_to_fee(rbf_node, dest_address): def test_settxfee(rbf_node, dest_address): # check that bumpfee reacts correctly to the use of settxfee (paytxfee) rbfid = spend_one_input(rbf_node, dest_address) - rbftx = rbf_node.gettransaction(rbfid) requested_feerate = Decimal("0.00025000") rbf_node.settxfee(requested_feerate) bumped_tx = rbf_node.bumpfee(rbfid)