Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Feb 26, 2024
1 parent 2af4336 commit 8032698
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
)

func (app *ChainApp) RegisterUpgradeHandlers(cdc codec.BinaryCodec, clientKeeper clientkeeper.Keeper) {
planName := "sdk47-upgrade"
planName := "4.3.0"
// Set param key table for params module migration
for _, subspace := range app.ParamsKeeper.GetSubspaces() {
var keyTable paramstypes.KeyTable
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ let
in
buildGoApplication rec {
pname = "chain-maind";
version = "sdk47-upgrade";
version = "4.3.0";
go = buildPackages.go_1_22;
src = lib.cleanSourceWith {
name = "src";
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/test_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ def assert_commission(adr, expected):
# test migrate keystore
for i in range(2):
cluster.migrate_keystore(i=i)
upgrade(cluster, "sdk47-upgrade", target_height, propose_legacy=True)
upgrade(cluster, "4.3.0", target_height, propose_legacy=True)


def test_cancel_upgrade(cluster):
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/upgrade-test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ pkgs.linkFarm "upgrade-test-package" [
{ name = "v2.0.0"; path = released2; }
{ name = "v3.0.0"; path = released3; }
{ name = "v4.2.0"; path = released4; }
{ name = "sdk47-upgrade"; path = current; }
{ name = "4.3.0"; path = current; }
]

0 comments on commit 8032698

Please sign in to comment.