aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_fee_estimation.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/feature_fee_estimation.py
parentb1788072657d17070fc9adcc2fa1201a8c8acdf8 (diff)
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/feature_fee_estimation.py')
-rwxr-xr-xtest/functional/feature_fee_estimation.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/feature_fee_estimation.py b/test/functional/feature_fee_estimation.py
index 422612a78e..ca21dd8a73 100755
--- a/test/functional/feature_fee_estimation.py
+++ b/test/functional/feature_fee_estimation.py
@@ -51,7 +51,6 @@ def small_txpuzzle_randfee(
if total_in <= amount + fee:
raise RuntimeError(f"Insufficient funds: need {amount + fee}, have {total_in}")
tx = wallet.create_self_transfer_multi(
- from_node=from_node,
utxos_to_spend=utxos_to_spend,
fee_per_output=0)
tx.vout[0].nValue = int((total_in - amount - fee) * COIN)