-
Notifications
You must be signed in to change notification settings - Fork 170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: finish incentive module #1952
Conversation
// EndBlock executes all ABCI EndBlock logic respective to the x/incentive module. | ||
// It returns no validator updates. | ||
func (am AppModule) EndBlock(ctx sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate { | ||
return EndBlocker(ctx, am.keeper) |
Check warning
Code scanning / CodeQL
Panic in BeginBock or EndBlock consensus methods
Codecov Report
@@ Coverage Diff @@
## main #1952 +/- ##
==========================================
- Coverage 75.38% 68.98% -6.41%
==========================================
Files 100 116 +16
Lines 8025 9453 +1428
==========================================
+ Hits 6050 6521 +471
- Misses 1589 2449 +860
- Partials 386 483 +97
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pre - approving. Most of the issues were solved or moved to tasks. TODO, before merging:
- use community Fund, instead of custom fund
- document (proto) and add to the spec about 5 simultaneous unbonding (ideally let's change to 10)
- add a helper function: feat: finish incentive module #1952 (comment)
Max unbondings is already described in spec - I have added a note in proto docs about it as well. |
e2e passed - I'm merging |
Contains:
closes: #1749