-
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: upgrade the lotus to v1.32.0-rc1 for nv25 (#1329)
* chore: upgrade the lotus to v1.31.0 * chore: upgrade lotus to v1.32.0-rc1 * chore: update the extern/filecon-ffi
- Loading branch information
Showing
26 changed files
with
2,057 additions
and
106 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" | ||
datacap16 "github.com/filecoin-project/go-state-types/builtin/v16/datacap" | ||
adt16 "github.com/filecoin-project/go-state-types/builtin/v16/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 = (*state16)(nil) | ||
|
||
func load16(store adt.Store, root cid.Cid) (State, error) { | ||
out := state16{store: store} | ||
err := store.Get(store.Context(), root, &out) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &out, nil | ||
} | ||
|
||
func make16(store adt.Store, governor address.Address, bitwidth uint64) (State, error) { | ||
out := state16{store: store} | ||
s, err := datacap16.ConstructState(store, governor, bitwidth) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
out.State = *s | ||
|
||
return &out, nil | ||
} | ||
|
||
type state16 struct { | ||
datacap16.State | ||
store adt.Store | ||
} | ||
|
||
func (s *state16) Governor() (address.Address, error) { | ||
return s.State.Governor, nil | ||
} | ||
|
||
func (s *state16) GetState() interface{} { | ||
return &s.State | ||
} | ||
|
||
func (s *state16) ForEachClient(cb func(addr address.Address, dcap abi.StoragePower) error) error { | ||
return forEachClient(s.store, actorstypes.Version16, s.VerifiedClients, cb) | ||
} | ||
|
||
func (s *state16) VerifiedClients() (adt.Map, error) { | ||
return adt16.AsMap(s.store, s.Token.Balances, int(s.Token.HamtBitWidth)) | ||
} | ||
|
||
func (s *state16) VerifiedClientDataCap(addr address.Address) (bool, abi.StoragePower, error) { | ||
return getDataCap(s.store, actorstypes.Version16, s.VerifiedClients, addr) | ||
} | ||
|
||
func (s *state16) VerifiedClientsMapBitWidth() int { | ||
return int(s.Token.HamtBitWidth) | ||
} | ||
|
||
func (s *state16) VerifiedClientsMapHashFunction() func(input []byte) []byte { | ||
return func(input []byte) []byte { | ||
res := sha256.Sum256(input) | ||
return res[:] | ||
} | ||
} | ||
|
||
func (s *state16) ActorKey() string { | ||
return manifest.DatacapKey | ||
} | ||
|
||
func (s *state16) ActorVersion() actorstypes.Version { | ||
return actorstypes.Version16 | ||
} | ||
|
||
func (s *state16) 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.