50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
|
package datacap
|
||
|
|
||
|
import (
|
||
|
"github.com/filecoin-project/go-address"
|
||
|
"github.com/filecoin-project/go-state-types/abi"
|
||
|
"github.com/ipfs/go-cid"
|
||
|
|
||
|
"github.com/filecoin-project/lotus/chain/actors"
|
||
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
||
|
|
||
|
datacap{{.v}} "github.com/filecoin-project/go-state-types/builtin{{.import}}datacap"
|
||
|
adt{{.v}} "github.com/filecoin-project/go-state-types/builtin{{.import}}util/adt"
|
||
|
builtin{{.v}} "github.com/filecoin-project/go-state-types/builtin"
|
||
|
)
|
||
|
|
||
|
var _ State = (*state{{.v}})(nil)
|
||
|
|
||
|
func load{{.v}}(store adt.Store, root cid.Cid) (State, error) {
|
||
|
out := state{{.v}}{store: store}
|
||
|
err := store.Get(store.Context(), root, &out)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &out, nil
|
||
|
}
|
||
|
|
||
|
func make{{.v}}(store adt.Store, governor address.Address, bitwidth uint64) (State, error) {
|
||
|
out := state{{.v}}{store: store}
|
||
|
s, err := datacap{{.v}}.ConstructState(store, governor, bitwidth)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
out.State = *s
|
||
|
|
||
|
return &out, nil
|
||
|
}
|
||
|
|
||
|
type state{{.v}} struct {
|
||
|
datacap{{.v}}.State
|
||
|
store adt.Store
|
||
|
}
|
||
|
|
||
|
func (s *state{{.v}}) Governor() (address.Address, error) {
|
||
|
return s.State.Governor, nil
|
||
|
}
|
||
|
|
||
|
func (s *state{{.v}}) GetState() interface{} {
|
||
|
return &s.State
|
||
|
}
|