From 34a38ba99c7a012f3ef1f41e1e24b29f7363157d Mon Sep 17 00:00:00 2001 From: Yaacov Akiba Slama Date: Thu, 1 Oct 2020 17:04:15 +0300 Subject: [PATCH] Decrease target conf to 6 --- intercept.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intercept.go b/intercept.go index 53e960c..2c5bb1e 100644 --- a/intercept.go +++ b/intercept.go @@ -37,7 +37,7 @@ func openChannel(ctx context.Context, client lnrpc.LightningClient, paymentHash, channelPoint, err := client.OpenChannelSync(ctx, &lnrpc.OpenChannelRequest{ NodePubkey: destination, LocalFundingAmount: capacity, - TargetConf: 20, + TargetConf: 6, Private: true, }) if err != nil {