From ae47bc15ff01971a7782206e8b741ce2bda98248 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Tue, 28 Apr 2020 13:39:35 -0400 Subject: [PATCH] Remove / rename fallback post stuff --- build/params_shared.go | 3 --- storage/wdpost_sched.go | 6 +++--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/build/params_shared.go b/build/params_shared.go index 52ce98d53..710c0803c 100644 --- a/build/params_shared.go +++ b/build/params_shared.go @@ -53,9 +53,6 @@ const WRatioDen = 2 // ///// // Proofs -// Epochs -const FallbackPoStConfidence = 6 - // Epochs const SealRandomnessLookback = Finality diff --git a/storage/wdpost_sched.go b/storage/wdpost_sched.go index f3b61e29f..bba478c21 100644 --- a/storage/wdpost_sched.go +++ b/storage/wdpost_sched.go @@ -129,10 +129,10 @@ func (s *WindowPoStScheduler) Run(ctx context.Context) { } if err := s.revert(ctx, lowest); err != nil { - log.Error("handling head reverts in fallbackPost sched: %+v", err) + log.Error("handling head reverts in windowPost sched: %+v", err) } if err := s.update(ctx, highest); err != nil { - log.Error("handling head updates in fallbackPost sched: %+v", err) + log.Error("handling head updates in windowPost sched: %+v", err) } span.End() @@ -206,7 +206,7 @@ func (s *WindowPoStScheduler) abortActivePoSt() { s.abort() } - log.Warnf("Aborting Fallback PoSt (Deadline: %+v)", s.activeDeadline) + log.Warnf("Aborting Window PoSt (Deadline: %+v)", s.activeDeadline) s.activeDeadline = nil s.abort = nil