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"
|
||
|
|
||
|
verifreg2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/verifreg"
|
||
|
)
|
||
|
|
||
|
var _ State = (*state2)(nil)
|
||
|
|
||
|
func load2(store adt.Store, root cid.Cid) (State, error) {
|
||
|
out := state2{store: store}
|
||
|
err := store.Get(store.Context(), root, &out)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &out, nil
|
||
|
}
|
||
|
|
||
|
type state2 struct {
|
||
|
verifreg2.State
|
||
|
store adt.Store
|
||
|
}
|
||
|
|
||
|
func (s *state2) VerifiedClientDataCap(addr address.Address) (bool, abi.StoragePower, error) {
|
||
|
return getDataCap(s.store, actors.Version2, s.State.VerifiedClients, addr)
|
||
|
}
|
||
|
|
||
|
func (s *state2) VerifierDataCap(addr address.Address) (bool, abi.StoragePower, error) {
|
||
|
return getDataCap(s.store, actors.Version2, s.State.Verifiers, addr)
|
||
|
}
|
||
|
|
||
|
func (s *state2) ForEachVerifier(cb func(addr address.Address, dcap abi.StoragePower) error) error {
|
||
|
return forEachCap(s.store, actors.Version2, s.State.Verifiers, cb)
|
||
|
}
|
||
|
|
||
|
func (s *state2) ForEachClient(cb func(addr address.Address, dcap abi.StoragePower) error) error {
|
||
|
return forEachCap(s.store, actors.Version2, s.State.VerifiedClients, cb)
|
||
|
}
|