From 20c57fcd0e95034e94bd24d080bab884cebb8d04 Mon Sep 17 00:00:00 2001 From: Travis Person Date: Tue, 13 Oct 2020 19:00:37 +0000 Subject: [PATCH] lotus-shed: post-find use lookback --- cmd/lotus-shed/postfind.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lotus-shed/postfind.go b/cmd/lotus-shed/postfind.go index af6b6517d..57a163c42 100644 --- a/cmd/lotus-shed/postfind.go +++ b/cmd/lotus-shed/postfind.go @@ -55,7 +55,7 @@ var postFindCmd = &cli.Command{ return err } } - oneDayAgo := ts.Height() - abi.ChainEpoch(2880) + oneDayAgo := ts.Height() - abi.ChainEpoch(c.Int("lookback")) if verbose { fmt.Printf("Collecting messages between %d and %d\n", ts.Height(), oneDayAgo) }