-
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.
- there are still some bugs in lotus that prevent lily from running correctly
- Loading branch information
Showing
21 changed files
with
1,815 additions
and
34 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
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,92 @@ | ||
package datacap | ||
|
||
import ( | ||
"crypto/sha256" | ||
"fmt" | ||
|
||
"github.com/filecoin-project/go-address" | ||
"github.com/filecoin-project/go-state-types/abi" | ||
"github.com/ipfs/go-cid" | ||
|
||
"github.com/filecoin-project/lily/chain/actors" | ||
"github.com/filecoin-project/lotus/chain/actors/adt" | ||
|
||
datacap11 "github.com/filecoin-project/go-state-types/builtin/v11/datacap" | ||
adt11 "github.com/filecoin-project/go-state-types/builtin/v11/util/adt" | ||
) | ||
|
||
var _ State = (*state11)(nil) | ||
|
||
func load11(store adt.Store, root cid.Cid) (State, error) { | ||
out := state11{store: store} | ||
err := store.Get(store.Context(), root, &out) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &out, nil | ||
} | ||
|
||
func make11(store adt.Store, governor address.Address, bitwidth uint64) (State, error) { | ||
out := state11{store: store} | ||
s, err := datacap11.ConstructState(store, governor, bitwidth) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
out.State = *s | ||
|
||
return &out, nil | ||
} | ||
|
||
type state11 struct { | ||
datacap11.State | ||
store adt.Store | ||
} | ||
|
||
func (s *state11) Governor() (address.Address, error) { | ||
return s.State.Governor, nil | ||
} | ||
|
||
func (s *state11) GetState() interface{} { | ||
return &s.State | ||
} | ||
|
||
func (s *state11) ForEachClient(cb func(addr address.Address, dcap abi.StoragePower) error) error { | ||
return forEachClient(s.store, actors.Version11, s.VerifiedClients, cb) | ||
} | ||
|
||
func (s *state11) VerifiedClients() (adt.Map, error) { | ||
return adt11.AsMap(s.store, s.Token.Balances, int(s.Token.HamtBitWidth)) | ||
} | ||
|
||
func (s *state11) VerifiedClientDataCap(addr address.Address) (bool, abi.StoragePower, error) { | ||
return getDataCap(s.store, actors.Version11, s.VerifiedClients, addr) | ||
} | ||
|
||
func (s *state11) VerifiedClientsMapBitWidth() int { | ||
return int(s.Token.HamtBitWidth) | ||
} | ||
|
||
func (s *state11) VerifiedClientsMapHashFunction() func(input []byte) []byte { | ||
return func(input []byte) []byte { | ||
res := sha256.Sum256(input) | ||
return res[:] | ||
} | ||
} | ||
|
||
func (s *state11) ActorKey() string { | ||
return actors.DatacapKey | ||
} | ||
|
||
func (s *state11) ActorVersion() actors.Version { | ||
return actors.Version11 | ||
} | ||
|
||
func (s *state11) 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.