lotus/chain/actors/builtin/system/v8.go

72 lines
1.4 KiB
Go
Raw Normal View History

2022-03-01 03:57:40 +00:00
package system
import (
"fmt"
2022-03-01 03:57:40 +00:00
"github.com/ipfs/go-cid"
actorstypes "github.com/filecoin-project/go-state-types/actors"
2022-09-06 15:49:29 +00:00
system8 "github.com/filecoin-project/go-state-types/builtin/v8/system"
2022-09-07 23:30:55 +00:00
"github.com/filecoin-project/lotus/chain/actors"
2022-09-07 23:30:55 +00:00
"github.com/filecoin-project/lotus/chain/actors/adt"
2022-03-01 03:57:40 +00:00
)
var _ State = (*state8)(nil)
func load8(store adt.Store, root cid.Cid) (State, error) {
out := state8{store: store}
err := store.Get(store.Context(), root, &out)
if err != nil {
return nil, err
}
return &out, nil
}
func make8(store adt.Store, builtinActors cid.Cid) (State, error) {
2022-03-01 03:57:40 +00:00
out := state8{store: store}
out.State = system8.State{
BuiltinActors: builtinActors,
}
2022-03-01 03:57:40 +00:00
return &out, nil
}
type state8 struct {
system8.State
store adt.Store
}
func (s *state8) GetState() interface{} {
return &s.State
2022-04-07 18:46:23 +00:00
}
func (s *state8) GetBuiltinActors() cid.Cid {
return s.State.BuiltinActors
}
2022-09-08 01:25:28 +00:00
func (s *state8) SetBuiltinActors(c cid.Cid) error {
s.State.BuiltinActors = c
return nil
}
func (s *state8) ActorKey() string {
return actors.SystemKey
}
func (s *state8) ActorVersion() actorstypes.Version {
return actorstypes.Version8
}
func (s *state8) 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
}