diff --git a/storage/post.go b/storage/post.go index 8f6748ba3..4a4f4b4a5 100644 --- a/storage/post.go +++ b/storage/post.go @@ -37,7 +37,9 @@ func (m *Miner) beginPosting(ctx context.Context) { return } - m.schedPost, _ = actors.ProvingPeriodEnd(ppe, ts.Height()) + // height needs to be +1, because otherwise we'd be trying to schedule PoSt + // at current block height + m.schedPost, _ = actors.ProvingPeriodEnd(ppe, ts.Height()+1) m.schedLk.Unlock()