From 6242158d510057ee10d1e5f6d766ff0015ed87f8 Mon Sep 17 00:00:00 2001 From: yyforyongyu Date: Thu, 6 May 2021 19:11:43 +0800 Subject: [PATCH] chainfee: fix maxBlockTarget value --- lnwallet/chainfee/estimator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnwallet/chainfee/estimator.go b/lnwallet/chainfee/estimator.go index 341ee919..77047567 100644 --- a/lnwallet/chainfee/estimator.go +++ b/lnwallet/chainfee/estimator.go @@ -19,7 +19,7 @@ const ( // a WebAPIEstimator will cache fees for. This number is chosen // because it's the highest number of confs bitcoind will return a fee // estimate for. - maxBlockTarget uint32 = 1009 + maxBlockTarget uint32 = 1008 // minBlockTarget is the lowest number of blocks confirmations that // a WebAPIEstimator will cache fees for. Requesting an estimate for