From abc3e783ffc3cdf04dc9c2b4748930829e31e898 Mon Sep 17 00:00:00 2001 From: whyrusleeping Date: Tue, 20 Oct 2020 10:09:21 -0700 Subject: [PATCH] bump lookback cap to 24 hours --- cmd/lotus-gateway/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lotus-gateway/api.go b/cmd/lotus-gateway/api.go index a0febef2c..7fc004327 100644 --- a/cmd/lotus-gateway/api.go +++ b/cmd/lotus-gateway/api.go @@ -23,7 +23,7 @@ import ( ) const ( - LookbackCap = time.Hour * 12 + LookbackCap = time.Hour * 24 stateWaitLookbackLimit = abi.ChainEpoch(20) )