2021-05-15 01:11:23 +00:00
|
|
|
package system
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
|
2022-09-06 15:49:29 +00:00
|
|
|
system0 "github.com/filecoin-project/specs-actors/actors/builtin/system"
|
2022-09-07 23:30:55 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2021-05-15 01:11:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ State = (*state0)(nil)
|
|
|
|
|
|
|
|
func load0(store adt.Store, root cid.Cid) (State, error) {
|
|
|
|
out := state0{store: store}
|
|
|
|
err := store.Get(store.Context(), root, &out)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func make0(store adt.Store) (State, error) {
|
|
|
|
out := state0{store: store}
|
|
|
|
out.State = system0.State{}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type state0 struct {
|
|
|
|
system0.State
|
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state0) GetState() interface{} {
|
|
|
|
return &s.State
|
|
|
|
}
|
2022-06-07 03:14:16 +00:00
|
|
|
|
|
|
|
func (s *state0) GetBuiltinActors() cid.Cid {
|
|
|
|
|
|
|
|
return cid.Undef
|
|
|
|
|
|
|
|
}
|