Skip to content

Commit

Permalink
Add v1.1.5remdaomodtest upgrade handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Dusek committed May 10, 2024
1 parent 49aac53 commit ff5e733
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions app/upgrades/v1.1.5remdaomodtest/upgrade.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Package v1_1_5remdaomodtest is contains chain upgrade of the corresponding version.
package v1_1_5remdaomodtest //nolint:revive,stylecheck // app version

import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
)

// Name is migration name.
const Name = "v1.1.5remdaomodtest"

// UpgradeHandler is an x/upgrade handler.
func UpgradeHandler(_ sdk.Context, _ upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
return vm, nil
}

0 comments on commit ff5e733

Please sign in to comment.