We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb5efd0 commit 71494eeCopy full SHA for 71494ee
1 file changed
upgrade/v12alpha2/upgrade.go
@@ -25,6 +25,7 @@ import (
25
ftftypes "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types"
26
sdk "github.com/cosmos/cosmos-sdk/types"
27
"github.com/cosmos/cosmos-sdk/types/module"
28
+ authoritytypes "github.com/noble-assets/authority/types"
29
)
30
31
func CreateUpgradeHandler(
@@ -47,6 +48,10 @@ func CreateUpgradeHandler(
47
48
// it must be configured here for USDC transfers to be successful.
49
ftfKeeper.SetPaused(ctx, ftftypes.Paused{Paused: false})
50
51
+ // Because the owner store was not initialized in the devnet genesis,
52
+ // it must be configured here for USDC issuance to be successful.
53
+ ftfKeeper.SetOwner(ctx, ftftypes.Owner{Address: authoritytypes.ModuleAddress.String()})
54
+
55
return vm, nil
56
}
57
0 commit comments