From 5860d803899260db6a2c6631a5e93e7e3218a2b5 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Mon, 17 Feb 2020 13:11:25 +0100 Subject: [PATCH] Remove unnecessary memo --- packages/sdk/src/cosmwasmclient.spec.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/sdk/src/cosmwasmclient.spec.ts b/packages/sdk/src/cosmwasmclient.spec.ts index 3bfe3571..0c8292b3 100644 --- a/packages/sdk/src/cosmwasmclient.spec.ts +++ b/packages/sdk/src/cosmwasmclient.spec.ts @@ -224,7 +224,6 @@ describe("CosmWasmClient", () => { const pen = await Secp256k1Pen.fromMnemonic(faucet.mnemonic); const client = CosmWasmClient.makeWritable(httpUrl, faucet.address, signBytes => pen.sign(signBytes)); - const memo = "My first contract on chain"; const recipient = makeRandomAddress(); const transferAmount = [ { @@ -232,7 +231,7 @@ describe("CosmWasmClient", () => { amount: "1234567", }, ]; - const result = await client.sendTokens(recipient, transferAmount, memo); + const result = await client.sendTokens(recipient, transferAmount); await sleep(50); // wait until tx is indexed const txDetails = await new RestClient(httpUrl).txsById(result.transactionHash);