Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -41,6 +41,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

- (proto) [#67](https://github.com/mocachain/moca/pull/67) Publish protos to BSR under moca org
- (cli) [#243](https://github.com/mocachain/moca/pull/243) Add `mocad snapshots` command tree (list/delete/dump/export/load/restore) for managing local state-sync snapshots
- (upgrade) [#247](https://github.com/mocachain/moca/pull/247) Add `v1.3.0` upgrade handler (noop `RunMigrations`)

### Improvements

Expand Down
5 changes: 5 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -1559,6 +1559,11 @@ func (app *Evmos) setupUpgradeHandlers() {
return app.mm.RunMigrations(ctx, app.configurator, fromVM)
})

app.UpgradeKeeper.SetUpgradeHandler("v1.3.0", func(ctx context.Context, _ upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
// noop
return app.mm.RunMigrations(ctx, app.configurator, fromVM)
})

// testnet only upgrade Handlers
app.UpgradeKeeper.SetUpgradeHandler(
"testnet-gov-param-fix",
Expand Down
Loading