Merge pull request #3154 from filecoin-project/chore/add_missing_error_arg

Missing error argument
This commit is contained in:
Łukasz Magiera 2020-08-18 21:19:20 +02:00 committed by GitHub
commit 25448798b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -88,7 +88,7 @@ func (s *WindowPoStScheduler) Run(ctx context.Context) {
if notifs == nil {
notifs, err = s.api.ChainNotify(ctx)
if err != nil {
log.Errorf("ChainNotify error: %+v")
log.Errorf("ChainNotify error: %+v", err)
build.Clock.Sleep(10 * time.Second)
continue