-
Notifications
You must be signed in to change notification settings - Fork 95
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
use mainline packages for ibc and 08-wasm #374
base: release/v7.0.x
Are you sure you want to change the base?
Conversation
@@ -34,7 +34,7 @@ func NewTendermintConfig(isWasmClient bool) *TendermintConfig { | |||
|
|||
func (tmcfg *TendermintConfig) GetClientType() string { | |||
if tmcfg.IsWasmClient { | |||
return exported.Wasm | |||
return exported.ModuleName |
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 feels wrong...
@@ -97,8 +97,7 @@ func (endpoint *Endpoint) CreateClient() (err error) { | |||
return err | |||
} | |||
consensusState = &wasmtypes.ConsensusState{ | |||
Data: wasmConsensusState, | |||
Timestamp: tmConsensusState.GetTimestamp(), | |||
Data: wasmConsensusState, |
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.
migration hotspot
@@ -55,11 +55,11 @@ func (suite *TransferTestSuite) SetupTest() { | |||
|
|||
suite.wasmKeeper = suite.chainB.GetTestSupport().Wasm08Keeper() | |||
|
|||
msg := wasmtypes.NewMsgPushNewWasmCode(govAuthorityAddress, wasmContract) | |||
response, err := suite.wasmKeeper.PushNewWasmCode(suite.ctx, msg) | |||
msg := wasmtypes.NewMsgStoreCode(govAuthorityAddress, wasmContract) |
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.
think this is right
@faddat please take a look to merge into #387 @blasrodri nobody knows better wasm side of wasm08, this seems needs some wasm engine to setup and options provided. |
* chore: edd easy shell into devenv * chore: use non deprecated name * one more deprecated * fixes of params
@dzmitry-lahoda I've checked it out, and it was quite helpful thank you! Merged :) |
This PR: