lotus/chain/actors/builtin/cron/v10.go

36 lines
681 B
Go
Raw Normal View History

2022-11-08 04:55:56 +00:00
package cron
import (
"github.com/ipfs/go-cid"
cron10 "github.com/filecoin-project/go-state-types/builtin/v10/cron"
2022-11-08 05:53:13 +00:00
"github.com/filecoin-project/lotus/chain/actors/adt"
2022-11-08 04:55:56 +00:00
)
var _ State = (*state10)(nil)
func load10(store adt.Store, root cid.Cid) (State, error) {
out := state10{store: store}
err := store.Get(store.Context(), root, &out)
if err != nil {
return nil, err
}
return &out, nil
}
func make10(store adt.Store) (State, error) {
out := state10{store: store}
out.State = *cron10.ConstructState(cron10.BuiltInEntries())
return &out, nil
}
type state10 struct {
cron10.State
store adt.Store
}
func (s *state10) GetState() interface{} {
return &s.State
}