Skip to content

Commit

Permalink
Remove nil error for is catching up
Browse files Browse the repository at this point in the history
  • Loading branch information
poktblade committed Jul 19, 2022
1 parent e42fb6d commit 09ab95a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/pocketcore/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (am AppModule) EndBlock(ctx sdk.Ctx, _ abci.RequestEndBlock) []abci.Validat
}

if status.IsCatchingUp {
ctx.Logger().Error(fmt.Sprintf("tendermint is currently syncing still (cannot submit claims/proofs in this state): %s", err.Error()))
ctx.Logger().Error("tendermint is currently syncing still (cannot submit claims/proofs in this state)")
return
}

Expand Down

0 comments on commit 09ab95a

Please sign in to comment.