From 868674ece2810d21c36a2b6a5a7e11bc2c2a7a9a Mon Sep 17 00:00:00 2001 From: kaibot Date: Tue, 30 Jun 2026 06:23:44 -0400 Subject: [PATCH] baltx_fees default 100 -> 20 --- bal/core/plugin_base.py | 2 +- bal/wallet_util/bal_wallet_utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bal/core/plugin_base.py b/bal/core/plugin_base.py index d2e81e7..cdbcc3e 100644 --- a/bal/core/plugin_base.py +++ b/bal/core/plugin_base.py @@ -348,7 +348,7 @@ class BalPlugin(BasePlugin): @staticmethod def default_will_settings(): """Default will settings: a fee rate plus absolute threshold/locktime.""" - will_settings = {"baltx_fees": 50} + will_settings = {"baltx_fees": 20} will_settings.update(BalPlugin.default_will_settings_absolute()) return will_settings diff --git a/bal/wallet_util/bal_wallet_utils.py b/bal/wallet_util/bal_wallet_utils.py index 69e555c..78ed1ad 100755 --- a/bal/wallet_util/bal_wallet_utils.py +++ b/bal/wallet_util/bal_wallet_utils.py @@ -7,7 +7,7 @@ import sys from electrum.storage import WalletStorage from electrum.util import MyEncoder -default_fees = 50 +default_fees = 20 def fix_will_settings_tx_fees(json_wallet):