diff --git a/chain/gen/genesis/t04_power.go b/chain/gen/genesis/t04_power.go index 146e08f7d..2450003e8 100644 --- a/chain/gen/genesis/t04_power.go +++ b/chain/gen/genesis/t04_power.go @@ -2,7 +2,6 @@ package genesis import ( "context" - "github.com/filecoin-project/specs-actors/actors/builtin" "github.com/filecoin-project/specs-actors/actors/abi/big" @@ -24,10 +23,12 @@ func SetupStoragePowerActor(bs bstore.Blockstore) (*types.Actor, error) { } sms := &power.State{ + TotalRawBytePower: big.NewInt(0), TotalQualityAdjPower: big.NewInt(1), // TODO: has to be 1 initially to avoid div by zero. Kinda annoying, should find a way to fix + TotalPledgeCollateral: big.NewInt(0), MinerCount: 0, - EscrowTable: emptyhamt, CronEventQueue: emptyhamt, + LastEpochTick: 0, PoStDetectedFaultMiners: emptyhamt, Claims: emptyhamt, NumMinersMeetingMinPower: 0,