From a9cbb34be026ec3136714c3bdc457061bbdfb823 Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Thu, 20 Aug 2020 11:56:28 -0700 Subject: [PATCH 1/2] loopout: Increase default sweep confirmation target Now that the server supports a longer CLTV maximum, the default sweep target may be increased to allow for lower on-chain costs --- loopout.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopout.go b/loopout.go index 60cd377..025f012 100644 --- a/loopout.go +++ b/loopout.go @@ -30,7 +30,7 @@ var ( // DefaultSweepConfTarget is the default confirmation target we'll use // when sweeping on-chain HTLCs. - DefaultSweepConfTarget int32 = 6 + DefaultSweepConfTarget int32 = 12 // DefaultHtlcConfTarget is the default confirmation target we'll use // for on-chain htlcs published by the swap client for Loop In. From a29cb86b4a084d1cd459fef11ef0921934b9856c Mon Sep 17 00:00:00 2001 From: Alex Bosworth Date: Mon, 24 Aug 2020 13:40:28 -0700 Subject: [PATCH 2/2] Update loopout.go --- loopout.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loopout.go b/loopout.go index 025f012..2c47737 100644 --- a/loopout.go +++ b/loopout.go @@ -30,7 +30,7 @@ var ( // DefaultSweepConfTarget is the default confirmation target we'll use // when sweeping on-chain HTLCs. - DefaultSweepConfTarget int32 = 12 + DefaultSweepConfTarget int32 = 9 // DefaultHtlcConfTarget is the default confirmation target we'll use // for on-chain htlcs published by the swap client for Loop In.