From ac38b4a5949e61a4f0dd26cc3831921c6c80d037 Mon Sep 17 00:00:00 2001 From: Oren Date: Mon, 26 May 2025 18:02:58 +0300 Subject: [PATCH] don't use config FEE_POLICY Long Term recovery transactions should have a high fee policy, because we don't know when we will broadcast them. On the other hand, they won't need to be urgent when broadcasted either. --- electrum/plugins/timelock_recovery/qt.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/electrum/plugins/timelock_recovery/qt.py b/electrum/plugins/timelock_recovery/qt.py index 7a7dc032c..7e646c2c7 100644 --- a/electrum/plugins/timelock_recovery/qt.py +++ b/electrum/plugins/timelock_recovery/qt.py @@ -176,8 +176,7 @@ class Plugin(TimelockRecoveryPlugin): plan_dialog = WindowModalDialog(context.main_window, "Timelock Recovery") plan_dialog.setContentsMargins(11, 11, 1, 1) plan_dialog.resize(800, plan_dialog.height()) - - fee_policy = FeePolicy(context.main_window.config.FEE_POLICY) + fee_policy = FeePolicy('eta:1') create_cancel_cb = QCheckBox('', checked=False) alert_tx_label = QLabel('') recovery_tx_label = QLabel('')