8b5da86727
Introduce nv21 skeleton for local testing: - Use local go-state-types with actor_version_checklist changes: https://github.com/filecoin-project/go-state-types/blob/master/actors_version_checklist.md - Imports mock v12-actors bundle - Define upgrade heights - Generate adapters - Add upgrade schedule and migration - Add actorstype to the NewActorRegistry in /chain/consensus/computestate.go - Add upgrade field to api/types.go/ForkUpgradeParams - Add upgrade to node/impl/full/state.go - Add network version to chain/state/statetree.go - make jen - make docsgen-cli
63 lines
1.4 KiB
Go
Generated
63 lines
1.4 KiB
Go
Generated
package account
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
account12 "github.com/filecoin-project/go-state-types/builtin/v12/account"
|
|
"github.com/filecoin-project/go-state-types/manifest"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
)
|
|
|
|
var _ State = (*state12)(nil)
|
|
|
|
func load12(store adt.Store, root cid.Cid) (State, error) {
|
|
out := state12{store: store}
|
|
err := store.Get(store.Context(), root, &out)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &out, nil
|
|
}
|
|
|
|
func make12(store adt.Store, addr address.Address) (State, error) {
|
|
out := state12{store: store}
|
|
out.State = account12.State{Address: addr}
|
|
return &out, nil
|
|
}
|
|
|
|
type state12 struct {
|
|
account12.State
|
|
store adt.Store
|
|
}
|
|
|
|
func (s *state12) PubkeyAddress() (address.Address, error) {
|
|
return s.Address, nil
|
|
}
|
|
|
|
func (s *state12) GetState() interface{} {
|
|
return &s.State
|
|
}
|
|
|
|
func (s *state12) ActorKey() string {
|
|
return manifest.AccountKey
|
|
}
|
|
|
|
func (s *state12) ActorVersion() actorstypes.Version {
|
|
return actorstypes.Version12
|
|
}
|
|
|
|
func (s *state12) Code() cid.Cid {
|
|
code, ok := actors.GetActorCodeID(s.ActorVersion(), s.ActorKey())
|
|
if !ok {
|
|
panic(fmt.Errorf("didn't find actor %v code id for actor version %d", s.ActorKey(), s.ActorVersion()))
|
|
}
|
|
|
|
return code
|
|
}
|