-
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 lotus to 1.25.0 (#1274)
* Update lotus version to 1.25.0 for network version 21
- Loading branch information
Showing
28 changed files
with
2,075 additions
and
167 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
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/filecoin-project/go-address" | ||
"github.com/filecoin-project/go-state-types/abi" | ||
"github.com/ipfs/go-cid" | ||
|
||
actorstypes "github.com/filecoin-project/go-state-types/actors" | ||
"github.com/filecoin-project/go-state-types/manifest" | ||
"github.com/filecoin-project/lotus/chain/actors" | ||
"github.com/filecoin-project/lotus/chain/actors/adt" | ||
|
||
datacap12 "github.com/filecoin-project/go-state-types/builtin/v12/datacap" | ||
adt12 "github.com/filecoin-project/go-state-types/builtin/v12/util/adt" | ||
) | ||
|
||
var _ State = (*state12)(nil) | ||
|
||
func load12(store adt.Store, root cid.Cid) (State, error) { | ||
out := state12{store: store} | ||
err := store.Get(store.Context(), root, &out) | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &out, nil | ||
} | ||
|
||
func make12(store adt.Store, governor address.Address, bitwidth uint64) (State, error) { | ||
out := state12{store: store} | ||
s, err := datacap12.ConstructState(store, governor, bitwidth) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
out.State = *s | ||
|
||
return &out, nil | ||
} | ||
|
||
type state12 struct { | ||
datacap12.State | ||
store adt.Store | ||
} | ||
|
||
func (s *state12) Governor() (address.Address, error) { | ||
return s.State.Governor, nil | ||
} | ||
|
||
func (s *state12) GetState() interface{} { | ||
return &s.State | ||
} | ||
|
||
func (s *state12) ForEachClient(cb func(addr address.Address, dcap abi.StoragePower) error) error { | ||
return forEachClient(s.store, actorstypes.Version12, s.VerifiedClients, cb) | ||
} | ||
|
||
func (s *state12) VerifiedClients() (adt.Map, error) { | ||
return adt12.AsMap(s.store, s.Token.Balances, int(s.Token.HamtBitWidth)) | ||
} | ||
|
||
func (s *state12) VerifiedClientDataCap(addr address.Address) (bool, abi.StoragePower, error) { | ||
return getDataCap(s.store, actorstypes.Version12, s.VerifiedClients, addr) | ||
} | ||
|
||
func (s *state12) VerifiedClientsMapBitWidth() int { | ||
return int(s.Token.HamtBitWidth) | ||
} | ||
|
||
func (s *state12) VerifiedClientsMapHashFunction() func(input []byte) []byte { | ||
return func(input []byte) []byte { | ||
res := sha256.Sum256(input) | ||
return res[:] | ||
} | ||
} | ||
|
||
func (s *state12) ActorKey() string { | ||
return manifest.DatacapKey | ||
} | ||
|
||
func (s *state12) ActorVersion() actorstypes.Version { | ||
return actorstypes.Version12 | ||
} | ||
|
||
func (s *state12) 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.
Oops, something went wrong.