Skip to content
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: Add PrepareCheckState and Precommit callbacks #14860

Merged
merged 23 commits into from
Apr 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cda4b81
Add Commit callback
prettymuchbryce Jan 31, 2023
862b4d8
Add tests for Commiter change (#5)
prettymuchbryce Feb 3, 2023
1d72615
add precommit callback (#7)
dydxwill Feb 23, 2023
74ef20a
lint
prettymuchbryce Mar 22, 2023
a491aaf
Rename Commit to PrepareCheckState
prettymuchbryce Mar 24, 2023
d01e7ff
Add documentation to module manager
prettymuchbryce Mar 28, 2023
c32d39a
Merge branch 'main' into prettymuchbryce/add-commiter
prettymuchbryce Mar 28, 2023
ee7016a
Fix implementation and docs
prettymuchbryce Mar 28, 2023
1f05374
Merge branch 'main' into prettymuchbryce/add-commiter
prettymuchbryce Mar 28, 2023
f4f81e2
Add CHANGELOG entry
prettymuchbryce Mar 28, 2023
a557977
Add assertions for Precommit/PrepareCheckState and tests
prettymuchbryce Mar 29, 2023
17ba453
Merge branch 'main' into prettymuchbryce/add-commiter
prettymuchbryce Mar 29, 2023
b7dc52d
Add new callbacks to config
prettymuchbryce Mar 29, 2023
eb40e33
Update mod file with api
prettymuchbryce Mar 29, 2023
ea68fee
Update NewManagerFromMap
prettymuchbryce Mar 30, 2023
caa2cde
Merge branch 'main' into prettymuchbryce/add-commiter
prettymuchbryce Mar 30, 2023
a0616d0
Add api to tests package go.mod
prettymuchbryce Mar 30, 2023
22095a4
Merge branch 'main' into prettymuchbryce/add-commiter
prettymuchbryce Mar 30, 2023
5393018
Add api to tests package go.mod
prettymuchbryce Mar 30, 2023
f20ee96
Set callbacks during Load
prettymuchbryce Apr 5, 2023
cf4674e
Fix comment
prettymuchbryce Apr 5, 2023
d40920f
Merge branch 'main' into prettymuchbryce/add-commiter
prettymuchbryce Apr 5, 2023
bd73f81
Merge branch 'main' into prettymuchbryce/add-commiter
prettymuchbryce Apr 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (runtime) [#15547](https://github.com/cosmos/cosmos-sdk/pull/15547) Allow runtime to pass event core api service to modules
* (telemetry) [#15657](https://github.com/cosmos/cosmos-sdk/pull/15657) Emit more data (go version, sdk version, upgrade height) in prom metrics
* (modulemanager) [#15829](https://github.com/cosmos/cosmos-sdk/pull/15829) add new endblocker interface to handle valset updates
* (core) [#14860](https://github.com/cosmos/cosmos-sdk/pull/14860) Add `Precommit` and `PrepareCheckState` AppModule callbacks.

### Improvements

Expand Down
Loading