remove debug prints

This commit is contained in:
whyrusleeping 2019-11-28 21:25:03 -08:00
parent 57f6d9e624
commit 01e4958f73

View File

@ -190,7 +190,6 @@ func (sma StorageMinerActor) StorageMinerConstructor(act *types.Actor, vmctx typ
SectorSize: params.SectorSize,
}
fmt.Println("NEW STORAGE MINER WITH SECTOR SIZE: ", params.SectorSize)
minfocid, err := vmctx.Storage().Put(minerInfo)
if err != nil {
return nil, err
@ -904,7 +903,6 @@ func onSuccessfulPoSt(self *StorageMinerActorState, vmctx types.VMContext) aerro
prevSlashingDeadline = 0
}
fmt.Println("POWER UPDATE DELTA: ", delta)
enc, err := SerializeParams(&UpdateStorageParams{
Delta: delta,
NextProvingPeriodEnd: vmctx.BlockHeight() + build.SlashablePowerDelay,