From aaa8658aa0ae578fd7c5eadb731305b663ddf0c8 Mon Sep 17 00:00:00 2001 From: kaibot Date: Tue, 30 Jun 2026 06:21:58 -0400 Subject: [PATCH] fix: default baltx_fees 100 -> 50 --- 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 28307d9..d2e81e7 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": 100} + will_settings = {"baltx_fees": 50} 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 b81e0a0..69e555c 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 = 100 +default_fees = 50 def fix_will_settings_tx_fees(json_wallet):