Fix rleplus in actor code
, License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
This commit is contained in:
parent
32a1940c57
commit
6e4761c819
@ -477,7 +477,10 @@ func (sma StorageMinerActor) SubmitFallbackPoSt(act *types.Actor, vmctx types.VM
|
|||||||
return nil, aerrors.Absorb(err, 3, "could not decode sectorset")
|
return nil, aerrors.Absorb(err, 3, "could not decode sectorset")
|
||||||
}
|
}
|
||||||
|
|
||||||
faults := self.CurrentFaultSet.All()
|
faults, nerr := self.CurrentFaultSet.All()
|
||||||
|
if nerr != nil {
|
||||||
|
return nil, aerrors.Absorb(err, 5, "RLE+ invalid")
|
||||||
|
}
|
||||||
_ = faults
|
_ = faults
|
||||||
|
|
||||||
proverID := vmctx.Message().To // TODO: normalize to ID address
|
proverID := vmctx.Message().To // TODO: normalize to ID address
|
||||||
|
Loading…
Reference in New Issue
Block a user