-
Notifications
You must be signed in to change notification settings - Fork 0
Bump wamsd to v0.55.0 #15
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
base: 0.55.0-original
Are you sure you want to change the base?
Conversation
…ions-0.45.0 Updating the fork to CosmWasm/wasmd v0.45.0
Hi! I'm the It looks like you correctly set up a CI job that uses the autofix.ci GitHub Action, but the autofix.ci GitHub App has not been installed for this repository. This means that autofix.ci unfortunately does not have the permissions to fix this pull request. If you are the repository owner, please install the app and then restart the CI workflow! 😃 |
x/wasm/keeper/keeper.go
Outdated
|
||
prefixStoreKey := types.GetContractStorePrefix(contractAddress) | ||
vmStore := types.NewStoreAdapter(prefix.NewStore(runtime.KVStoreAdapter(k.storeService.OpenKVStore(sdkCtx)), prefixStoreKey)) | ||
vmStore := prefix.NewStore(runtime.KVStoreAdapter(k.storeService.OpenKVStore(sdkCtx)), prefixStoreKey) |
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.
This should fix the tests imo
vmStore := prefix.NewStore(runtime.KVStoreAdapter(k.storeService.OpenKVStore(sdkCtx)), prefixStoreKey) | |
vmStore := runtime.KVStoreAdapter(k.storeService.OpenKVStore(sdkCtx)) |
No description provided.