From a456a15b8d8c1aa8c40a74cbe3bb557f3d29dcf9 Mon Sep 17 00:00:00 2001 From: gerlofvanek Date: Sat, 31 Jan 2026 11:42:11 +0100 Subject: [PATCH] Debug message for _fundTxElectrum --- basicswap/interface/btc.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/basicswap/interface/btc.py b/basicswap/interface/btc.py index af59c8b..8236d65 100644 --- a/basicswap/interface/btc.py +++ b/basicswap/interface/btc.py @@ -1922,6 +1922,12 @@ class BTCInterface(Secp256k1Interface): f"selected={len(selected_utxos)}, input={total_input}, output={total_output}, " f"fee={final_fee}, change={change}" ) + self._log.info_s( + "_fundTxElectrum tx amount, vsize, feerate: %ld, %ld, %ld", + total_output, + final_vsize, + fee_per_vbyte, + ) return tx_serialized