-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SDK upgrade to v0.50.0 - part 1 #1528
Conversation
* use a more stable ibc-go * fix some small errors in accordance with what's working in ibc-go and wasmd * temporarily disable rosetta * add a few error checks and update some deprecated tendermint calls * error checks in export.go
for _, m := range app.ModuleManager.Modules { | ||
if moduleWithName, ok := m.(module.HasName); ok { | ||
moduleName := moduleWithName.Name() | ||
if appModule, ok := moduleWithName.(appmodule.AppModule); ok { | ||
modules[moduleName] = appModule | ||
} | ||
} | ||
} |
Check warning
Code scanning / CodeQL
Iteration over map
for eventName, hasEvent := range hasEvents { | ||
suite.Require().True(hasEvent, "event: %s was not found in events", eventName) | ||
} |
Check warning
Code scanning / CodeQL
Iteration over map
maccPerms, | ||
authcodec.NewBech32Codec(sdk.Bech32MainPrefix), |
Check warning
Code scanning / CodeQL
Directly using the bech32 constants
maccPerms, | ||
authcodec.NewBech32Codec(sdk.Bech32MainPrefix), | ||
authcodec.NewBech32Codec(sdk.Bech32PrefixValAddr), |
Check warning
Code scanning / CodeQL
Directly using the bech32 constants
d8620bd
to
ac225c6
Compare
8f78db2
to
1411dac
Compare
@alpe -- this is looking good now: |
Closing this in favour of #1611 |
See #1438
The export/import simulations fail currently with:
See upgrade doc in the SDK
I have started with just the go.mod dependencies and some related changes to imports.
New modules
Removed: legacy proposals for x/upgrade
[(cosmos_proto.scalar) = "cosmos.AddressString"]
for addresses in protocosmos.msg.v1.service
proto annotationNot started