Minor debugging, fix wasmd version to 0.7.0-rc1

This commit is contained in:
Ethan Frey 2020-02-27 21:13:14 +01:00
parent 0bc8ac4f93
commit b9fecebd80
3 changed files with 4 additions and 2 deletions

View File

@ -143,7 +143,7 @@ describe("SigningCosmWasmClient", () => {
);
// execute
const result = await client.execute(contractAddress, {}, undefined);
const result = await client.execute(contractAddress, {release:{}}, undefined);
const [firstLog] = result.logs;
expect(firstLog.log).toEqual(`released funds to ${beneficiaryAddress}`);

View File

@ -27,6 +27,8 @@ export function leb128Encode(uint: number): Uint8Array {
export function getRandomizedHackatom(): Uint8Array {
const data = Encoding.fromBase64(hackatom.data);
// TODO: this needs to be redone!
// The return value of the export function cosmwasm_api_0_6 is unused and
// can be randomized for testing.
//

View File

@ -1,5 +1,5 @@
# Choose from https://hub.docker.com/r/cosmwasm/wasmd-demo/tags
REPOSITORY="cosmwasm/wasmd-demo"
VERSION="latest"
VERSION="v0.7.0-rc1"
CONTAINER_NAME="wasmd"