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

57 lines
1.1 KiB
Go
Raw Normal View History

2022-09-06 15:49:29 +00:00
package cron
import (
"fmt"
2022-09-06 15:49:29 +00:00
"github.com/ipfs/go-cid"
actorstypes "github.com/filecoin-project/go-state-types/actors"
2022-09-06 15:49:29 +00:00
cron9 "github.com/filecoin-project/go-state-types/builtin/v9/cron"
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-09-06 15:49:29 +00:00
)
var _ State = (*state9)(nil)
func load9(store adt.Store, root cid.Cid) (State, error) {
out := state9{store: store}
err := store.Get(store.Context(), root, &out)
if err != nil {
return nil, err
}
return &out, nil
}
func make9(store adt.Store) (State, error) {
out := state9{store: store}
out.State = *cron9.ConstructState(cron9.BuiltInEntries())
return &out, nil
}
type state9 struct {
cron9.State
store adt.Store
}
func (s *state9) GetState() interface{} {
return &s.State
}
func (s *state9) ActorKey() string {
return actors.CronKey
}
func (s *state9) ActorVersion() actorstypes.Version {
return actorstypes.Version9
}
func (s *state9) 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
}