From 160d8d91037517c31d0a29bff9680ac3fb25d2ba Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Thu, 6 May 2021 22:18:27 -0400 Subject: [PATCH] Set actor code CIDs to v5 --- actors/builtin/codes.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/actors/builtin/codes.go b/actors/builtin/codes.go index c48aa2998..cfda492c0 100644 --- a/actors/builtin/codes.go +++ b/actors/builtin/codes.go @@ -35,17 +35,17 @@ func init() { builtinActors = make(map[cid.Cid]*actorInfo) for id, info := range map[*cid.Cid]*actorInfo{ //nolint:nomaprange - &SystemActorCodeID: {name: "fil/4/system"}, - &InitActorCodeID: {name: "fil/4/init"}, - &CronActorCodeID: {name: "fil/4/cron"}, - &StoragePowerActorCodeID: {name: "fil/4/storagepower"}, - &StorageMinerActorCodeID: {name: "fil/4/storageminer"}, - &StorageMarketActorCodeID: {name: "fil/4/storagemarket"}, - &PaymentChannelActorCodeID: {name: "fil/4/paymentchannel"}, - &RewardActorCodeID: {name: "fil/4/reward"}, - &VerifiedRegistryActorCodeID: {name: "fil/4/verifiedregistry"}, - &AccountActorCodeID: {name: "fil/4/account", signer: true}, - &MultisigActorCodeID: {name: "fil/4/multisig", signer: true}, + &SystemActorCodeID: {name: "fil/5/system"}, + &InitActorCodeID: {name: "fil/5/init"}, + &CronActorCodeID: {name: "fil/5/cron"}, + &StoragePowerActorCodeID: {name: "fil/5/storagepower"}, + &StorageMinerActorCodeID: {name: "fil/5/storageminer"}, + &StorageMarketActorCodeID: {name: "fil/5/storagemarket"}, + &PaymentChannelActorCodeID: {name: "fil/5/paymentchannel"}, + &RewardActorCodeID: {name: "fil/5/reward"}, + &VerifiedRegistryActorCodeID: {name: "fil/5/verifiedregistry"}, + &AccountActorCodeID: {name: "fil/5/account", signer: true}, + &MultisigActorCodeID: {name: "fil/5/multisig", signer: true}, } { c, err := builder.Sum([]byte(info.name)) if err != nil {