From 1cf16a8baa8a3c42d1225f069c6fedc6744ece52 Mon Sep 17 00:00:00 2001 From: "Andreas M. Antonopoulos" Date: Wed, 28 Feb 2018 09:47:08 -0600 Subject: [PATCH] c-lightning rejects to_self_delay > 432 as unreasonably long https://github.com/ElementsProject/lightning/issues/1110 --- fundingmanager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fundingmanager.go b/fundingmanager.go index e3b5309fafc..69987b66879 100644 --- a/fundingmanager.go +++ b/fundingmanager.go @@ -46,7 +46,7 @@ const ( // The actual delay we will require will be somewhere between these // values, depending on channel size. minRemoteDelay = 144 - maxRemoteDelay = 2016 + maxRemoteDelay = 432 // maxWaitNumBlocksFundingConf is the maximum number of blocks to wait // for the funding transaction to be confirmed before forgetting about