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

49 lines
860 B
Go
Raw Normal View History

package system
import (
"github.com/ipfs/go-cid"
2022-11-08 05:53:13 +00:00
"golang.org/x/xerrors"
2022-11-08 04:55:56 +00:00
system5 "github.com/filecoin-project/specs-actors/v5/actors/builtin/system"
2022-11-08 05:53:13 +00:00
"github.com/filecoin-project/lotus/chain/actors/adt"
)
var _ State = (*state5)(nil)
func load5(store adt.Store, root cid.Cid) (State, error) {
out := state5{store: store}
err := store.Get(store.Context(), root, &out)
if err != nil {
return nil, err
}
return &out, nil
}
func make5(store adt.Store) (State, error) {
out := state5{store: store}
out.State = system5.State{}
return &out, nil
}
type state5 struct {
system5.State
store adt.Store
}
func (s *state5) GetState() interface{} {
return &s.State
}
func (s *state5) GetBuiltinActors() cid.Cid {
return cid.Undef
}
2022-09-08 01:25:28 +00:00
func (s *state5) SetBuiltinActors(c cid.Cid) error {
return xerrors.New("cannot set manifest cid before v8")
}