bugfix haspower meaning

This commit is contained in:
marco-storswift 2019-12-05 13:49:11 +08:00
parent a45fe8a7f9
commit c337a5b728

View File

@ -255,7 +255,7 @@ func (m *Miner) hasPower(ctx context.Context, addr address.Address, ts *types.Ti
return false, err
}
return power.MinerPower.Equals(types.NewInt(0)), nil
return !power.MinerPower.Equals(types.NewInt(0)), nil
}
func (m *Miner) mineOne(ctx context.Context, addr address.Address, base *MiningBase) (*types.BlockMsg, error) {
@ -266,7 +266,7 @@ func (m *Miner) mineOne(ctx context.Context, addr address.Address, base *MiningB
if err != nil {
return nil, xerrors.Errorf("checking if miner is slashed: %w", err)
}
if hasPower {
if !hasPower {
// slashed or just have no power yet
base.nullRounds++
return nil, nil