Minor debugging, fix wasmd version to 0.7.0-rc1
This commit is contained in:
parent
0bc8ac4f93
commit
b9fecebd80
@ -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}`);
|
||||
|
||||
|
||||
@ -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.
|
||||
//
|
||||
|
||||
@ -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"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user