Skip to content

Commit aab9725

Browse files
ComputerKeedaaakash4devNoooblienkritarth1107deadlium
committed
* fix(app): fix upgrade handler version number for "junction" module
* chore(app): update upgrade handler version number for "junction" module Co-authored-by: Shubham Sharma <samwodson@gmail.com> Co-authored-by: Aakash Singh Rajput <aakash4dev.crypto@gmail.com> Co-authored-by: Rahul Singh Maraskole <rsm050501@gmail.com> Co-authored-by: Kritarth Agrawal <singhalkritarth@gmail.com> Co-authored-by: Uddesh Jaiswal <uddeshjais.21@gmail.com> Co-authored-by: Shobhit Sharma <shobhitsks29@gmail.com>
1 parent 8d7be9a commit aab9725

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ func New(
358358
configurator := app.Configurator()
359359
UpgradeHandleFunc := CreateDefaultUpgradeHandler(app.ModuleManager, configurator)
360360
app.UpgradeKeeper.SetUpgradeHandler(
361-
"jip-69",
361+
"jip-1",
362362
UpgradeHandleFunc, // Upgrade handler function
363363
)
364364

app/upgrade.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func CreateDefaultUpgradeHandler(
1313
) upgradetypes.UpgradeHandler {
1414
return func(ctx context.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
1515
versionMap := module.VersionMap{
16-
"junction": 101, // version 1.0.1
16+
"junction": 100, // version 1.0.0
1717
}
1818

1919
return versionMap, nil

0 commit comments

Comments
 (0)