-
Notifications
You must be signed in to change notification settings - Fork 14
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent thanks, can you confirm you ran this locally successfully?
Appreciate all the work on the v0.46
upgrades
I can confirm that it passed all tests-- is there anything more you'd like me to try? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, @faddat! I just left a couple of nits.
@@ -137,7 +138,9 @@ var ( | |||
staking.AppModuleBasic{}, | |||
mint.AppModuleBasic{}, | |||
distr.AppModuleBasic{}, | |||
gov.NewAppModuleBasic(getGovProposalHandlers()...), | |||
gov.NewAppModuleBasic( | |||
[]govclient.ProposalHandler{paramsclient.ProposalHandler, distrclient.ProposalHandler, upgradeclient.LegacyProposalHandler, upgradeclient.LegacyCancelProposalHandler}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: remove empty line.
@@ -297,7 +299,7 @@ func New( | |||
|
|||
// add keepers | |||
app.AccountKeeper = authkeeper.NewAccountKeeper( | |||
appCodec, keys[authtypes.StoreKey], app.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms, | |||
appCodec, keys[authtypes.StoreKey], app.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms, sdk.Bech32MainPrefix, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
appCodec, keys[authtypes.StoreKey], app.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms, sdk.Bech32MainPrefix, | |
appCodec, keys[authtypes.StoreKey], app.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms, sdk.GetConfig().GetBech32AccountAddrPrefix(), |
Merged. Many thanks! @faddat |
This is the interchain accounts demo, but it uses ibc v5 and cosmos-sdk v0.46.0