From a2403ae16252aed9b3a99a113f5ef9e549b43d39 Mon Sep 17 00:00:00 2001 From: Linden <70739041+linden@users.noreply.github.com> Date: Wed, 14 May 2025 12:38:03 -0700 Subject: [PATCH] fix(`wallet_anchor.go`): adjust max fee ratio --- wallet_anchor.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wallet_anchor.go b/wallet_anchor.go index ed44d8a4b..bbf2323df 100644 --- a/wallet_anchor.go +++ b/wallet_anchor.go @@ -91,6 +91,9 @@ func (l *LndRpcWalletAnchor) FundPsbt(ctx context.Context, packet *psbt.Packet, }, MinConfs: int32(minConfs), ChangeType: defaultChangeType, + // Adjust the max fee tolerance to be 100% of the value to avoid false positives with small anchor outputs. + // https://github.com/lightninglabs/taproot-assets/issues/1417 + MaxFeeRatio: 1, }, ) if err != nil {