Merge pull request #3476 from filecoin-project/asr/advance-block

Check error in advance-block
This commit is contained in:
Łukasz Magiera 2020-09-02 13:46:34 +02:00 committed by GitHub
commit 8222f803d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,6 +62,9 @@ func init() {
}
mbi, err := api.MinerGetBaseInfo(ctx, addr, head.Height()+1, head.Key())
if err != nil {
return xerrors.Errorf("getting base info: %w", err)
}
ep := &types.ElectionProof{}
ep.WinCount = ep.ComputeWinCount(types.NewInt(1), types.NewInt(1))