From e7242a2fdb96a48ae1b65bbd0d4511a36888c15d Mon Sep 17 00:00:00 2001 From: vuong177 Date: Tue, 29 Aug 2023 12:30:42 +0700 Subject: [PATCH] store upgrade for tx boundary --- app/upgrades/v5/constants.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/upgrades/v5/constants.go b/app/upgrades/v5/constants.go index f73738fbf..87d595774 100644 --- a/app/upgrades/v5/constants.go +++ b/app/upgrades/v5/constants.go @@ -3,6 +3,7 @@ package v5 import ( store "github.com/cosmos/cosmos-sdk/store/types" "github.com/notional-labs/centauri/v5/app/upgrades" + txboundary "github.com/notional-labs/centauri/v5/x/tx-boundary/types" ) const ( @@ -14,6 +15,6 @@ var Upgrade = upgrades.Upgrade{ UpgradeName: UpgradeName, CreateUpgradeHandler: CreateUpgradeHandler, StoreUpgrades: store.StoreUpgrades{ - Added: []string{}, + Added: []string{txboundary.ModuleName}, }, }