-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update the actor versions (#1305)
* chore: update the actor versions * update the miner state mocks
- Loading branch information
Showing
20 changed files
with
1,992 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
package datacap | ||
|
||
import ( | ||
"crypto/sha256" | ||
"fmt" | ||
|
||
"github.com/ipfs/go-cid" | ||
|
||
"github.com/filecoin-project/go-address" | ||
"github.com/filecoin-project/go-state-types/abi" | ||
actorstypes "github.com/filecoin-project/go-state-types/actors" | ||
datacap14 "github.com/filecoin-project/go-state-types/builtin/v14/datacap" | ||
adt14 "github.com/filecoin-project/go-state-types/builtin/v14/util/adt" | ||
"github.com/filecoin-project/go-state-types/manifest" | ||
|
||
"github.com/filecoin-project/lotus/chain/actors" | ||
"github.com/filecoin-project/lotus/chain/actors/adt" | ||
) | ||
|
||
var _ State = (*state14)(nil) | ||
|
||
func load14(store adt.Store, root cid.Cid) (State, error) { | ||
out := state14{store: store} | ||
err := store.Get(store.Context(), root, &out) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &out, nil | ||
} | ||
|
||
func make14(store adt.Store, governor address.Address, bitwidth uint64) (State, error) { | ||
out := state14{store: store} | ||
s, err := datacap14.ConstructState(store, governor, bitwidth) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
out.State = *s | ||
|
||
return &out, nil | ||
} | ||
|
||
type state14 struct { | ||
datacap14.State | ||
store adt.Store | ||
} | ||
|
||
func (s *state14) Governor() (address.Address, error) { | ||
return s.State.Governor, nil | ||
} | ||
|
||
func (s *state14) GetState() interface{} { | ||
return &s.State | ||
} | ||
|
||
func (s *state14) ForEachClient(cb func(addr address.Address, dcap abi.StoragePower) error) error { | ||
return forEachClient(s.store, actorstypes.Version14, s.VerifiedClients, cb) | ||
} | ||
|
||
func (s *state14) VerifiedClients() (adt.Map, error) { | ||
return adt14.AsMap(s.store, s.Token.Balances, int(s.Token.HamtBitWidth)) | ||
} | ||
|
||
func (s *state14) VerifiedClientDataCap(addr address.Address) (bool, abi.StoragePower, error) { | ||
return getDataCap(s.store, actorstypes.Version14, s.VerifiedClients, addr) | ||
} | ||
|
||
func (s *state14) VerifiedClientsMapBitWidth() int { | ||
return int(s.Token.HamtBitWidth) | ||
} | ||
|
||
func (s *state14) VerifiedClientsMapHashFunction() func(input []byte) []byte { | ||
return func(input []byte) []byte { | ||
res := sha256.Sum256(input) | ||
return res[:] | ||
} | ||
} | ||
|
||
func (s *state14) ActorKey() string { | ||
return manifest.DatacapKey | ||
} | ||
|
||
func (s *state14) ActorVersion() actorstypes.Version { | ||
return actorstypes.Version14 | ||
} | ||
|
||
func (s *state14) 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 | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.