-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* x/interchainstaking/keeper: preallocate slice capacity in CalculateDeltas Given that types.ValidatorIntents is already a slice, this change just extracts its length and uses that as a slice capacity hint to improve performance. Fixes #97 * x/interchainstaking/keeper: use .IncrementBalanceWaitgroup() instead of naked ++ Instead of using a naked increment for an exported struct, this change uses its .IncrementBalanceWaitgroup() which helps in logical checks. Fixes #98 * make docker build process use makefile * fix BeforeEpochStart bug * refactor self consensus state update for testability * make decimals mandatory in validateBasic; more verbose errors if key not supported * handle failed redelegation messages * handle failed unbondings * bump cosmos-sdk v0.46.9; tendermint v0.34.26; gofumpt + lint; handle deprecated fields * add distance_to_target (euclidean distance between N-dimensional representations of aggregated_intent and current_delegations) to stats output, as measure of redelegation performance * add rc5 upgrade handler * redemptions logic v2 * comment out unused helpers * return early if there are no unbondings to attempt * reduce noise; remove unneccessary re-sorting * on dev/testnet reset RR that was affected by failed unbondings * rebased * rc6 --------- Co-authored-by: Emmanuel T Odeke <[email protected]> Co-authored-by: Ajaz Ahmed Ansari <[email protected]>
- Loading branch information
1 parent
3c296c3
commit 0bf2733
Showing
38 changed files
with
2,612 additions
and
1,017 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
Oops, something went wrong.