d9656f5220
This will make it easier to load arbitrary actors. We can: * Type switch (sort of unsafe, may want marker methods?) * Use this with `vm.MutateActorState`.
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
package verifreg
|
|
|
|
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"
|
|
|
|
verifreg0 "github.com/filecoin-project/specs-actors/actors/builtin/verifreg"
|
|
)
|
|
|
|
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
|
|
}
|
|
|
|
type state0 struct {
|
|
verifreg0.State
|
|
store adt.Store
|
|
}
|
|
|
|
func (s *state0) VerifiedClientDataCap(addr address.Address) (bool, abi.StoragePower, error) {
|
|
return getDataCap(s.store, actors.Version0, s.State.VerifiedClients, addr)
|
|
}
|
|
|
|
func (s *state0) VerifierDataCap(addr address.Address) (bool, abi.StoragePower, error) {
|
|
return getDataCap(s.store, actors.Version0, s.State.Verifiers, addr)
|
|
}
|
|
|
|
func (s *state0) ForEachVerifier(cb func(addr address.Address, dcap abi.StoragePower) error) error {
|
|
return forEachCap(s.store, actors.Version0, s.State.Verifiers, cb)
|
|
}
|
|
|
|
func (s *state0) ForEachClient(cb func(addr address.Address, dcap abi.StoragePower) error) error {
|
|
return forEachCap(s.store, actors.Version0, s.State.VerifiedClients, cb)
|
|
}
|