lotus/chain/gen/genesis/f06_vreg.go

58 lines
1.4 KiB
Go
Raw Normal View History

2020-04-21 18:25:43 +00:00
package genesis
import (
"context"
cbor "github.com/ipfs/go-ipld-cbor"
"golang.org/x/xerrors"
2020-04-21 18:25:43 +00:00
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/go-address"
2022-09-06 15:49:29 +00:00
actorstypes "github.com/filecoin-project/go-state-types/actors"
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/go-state-types/big"
"github.com/filecoin-project/go-state-types/manifest"
"github.com/filecoin-project/specs-actors/actors/util/adt"
2020-04-21 18:25:43 +00:00
bstore "github.com/filecoin-project/lotus/blockstore"
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/lotus/chain/actors"
"github.com/filecoin-project/lotus/chain/actors/builtin/verifreg"
2020-04-21 18:25:43 +00:00
"github.com/filecoin-project/lotus/chain/types"
)
2020-05-14 02:32:04 +00:00
var RootVerifierID address.Address
func init() {
idk, err := address.NewFromString("t080")
if err != nil {
panic(err)
}
RootVerifierID = idk
}
2022-09-06 15:49:29 +00:00
func SetupVerifiedRegistryActor(ctx context.Context, bs bstore.Blockstore, av actorstypes.Version) (*types.Actor, error) {
cst := cbor.NewCborStore(bs)
vst, err := verifreg.MakeState(adt.WrapStore(ctx, cbor.NewCborStore(bs)), av, RootVerifierID)
if err != nil {
return nil, err
}
2020-04-21 18:25:43 +00:00
statecid, err := cst.Put(ctx, vst.GetState())
if err != nil {
return nil, err
}
actcid, ok := actors.GetActorCodeID(av, manifest.VerifregKey)
if !ok {
return nil, xerrors.Errorf("failed to get verifreg actor code ID for actors version %d", av)
2020-04-21 18:25:43 +00:00
}
act := &types.Actor{
Code: actcid,
Head: statecid,
Balance: big.Zero(),
2020-04-21 18:25:43 +00:00
}
return act, nil
}