From 6f6e21a1a19c8c01773d7ae269d1aa0f97e17991 Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Tue, 25 Apr 2023 16:57:12 -0700 Subject: [PATCH] Follow the new default CLTV --- lnd/lnd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnd/lnd.go b/lnd/lnd.go index cea10cc..c192c71 100644 --- a/lnd/lnd.go +++ b/lnd/lnd.go @@ -250,7 +250,7 @@ func (l Lnd) SetFees(ctx context.Context, channelID lightning.ChannelID, fee lig req := lndclient.PolicyUpdateRequest{ BaseFeeMsat: 0, FeeRate: fee.Rate(), - TimeLockDelta: 40, + TimeLockDelta: 80, } return l.c.UpdateChanPolicy(ctx, req, outpoint) }