Adapt code to v1beta1 -> v1 rename

This commit is contained in:
Ethan Frey
2021-07-27 09:47:34 +02:00
parent 0ebb1efb9e
commit fb01b799c2
2 changed files with 3 additions and 1 deletions

View File

@@ -11,6 +11,8 @@
- Renamed InitMsg and MigrateMsg fields to Msg. This applies to protobuf Msg
and Proposals, as well as REST and CLI [\#563](https://github.com/CosmWasm/wasmd/pull/563)
- Move Proto version from `v1beta1` to `v1` for all cosmwasm.wasm.* types
[\#563](https://github.com/CosmWasm/wasmd/pull/563)
## [v0.17.0](https://github.com/CosmWasm/wasmd/tree/v0.17.0) (2021-05-26)

View File

@@ -104,7 +104,7 @@ func (c *TestChain) SmartQuery(contractAddr string, queryMsg interface{}, respon
// TODO: what is the query?
res := c.App.Query(abci.RequestQuery{
Path: "/cosmwasm.wasm.v1beta1.Query/SmartContractState",
Path: "/cosmwasm.wasm.v1.Query/SmartContractState",
Data: reqBin,
})