Update wasmd to v0.11.1 and re-enable tests

This commit is contained in:
Simon Warta 2020-10-09 10:13:29 +02:00
parent 6e180731f3
commit 64d82b295f
3 changed files with 1 additions and 3 deletions

View File

@ -382,7 +382,6 @@ describe("CosmWasmClient", () => {
it("can query existing key", async () => {
pendingWithoutWasmd();
pending("Raw query API is broken in v0.11.0-rc (https://github.com/CosmWasm/wasmd/issues/283)");
assert(contract);
const client = new CosmWasmClient(wasmd.endpoint);

View File

@ -306,7 +306,6 @@ describe("WasmExtension", () => {
describe("queryContractRaw", () => {
it("can query by key", async () => {
pendingWithoutWasmd();
pending("Raw query API is broken in v0.11.0-rc (https://github.com/CosmWasm/wasmd/issues/283)");
assert(hackatomContractAddress);
const client = makeWasmClient(wasmd.endpoint);
const raw = await client.wasm.queryContractRaw(hackatomContractAddress, hackatomConfigKey);

View File

@ -1,5 +1,5 @@
# Choose from https://hub.docker.com/r/cosmwasm/wasmd/tags
REPOSITORY="cosmwasm/wasmd"
VERSION="v0.11.0-rc"
VERSION="v0.11.1"
CONTAINER_NAME="wasmd"