From 3fe792e058365fe20af11e6c4b05d1822a14919f Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Tue, 4 Feb 2020 14:00:24 +0100 Subject: [PATCH] Disable faucet docker job --- .circleci/config.yml | 2 +- packages/sdk/src/restclient.spec.ts | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 67d28966..3776c694 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,7 @@ workflows: jobs: - build - lint - - faucet_docker + # - faucet_docker - test jobs: diff --git a/packages/sdk/src/restclient.spec.ts b/packages/sdk/src/restclient.spec.ts index c5d528a6..e4bee541 100644 --- a/packages/sdk/src/restclient.spec.ts +++ b/packages/sdk/src/restclient.spec.ts @@ -163,6 +163,12 @@ describe("RestClient", () => { signatures: [signature], }; + // make sure this is a valid encoding/decoding + const aminoBytes = await client.encodeTx(tx); + expect(aminoBytes).toBeTruthy(); + expect(aminoBytes.length).toEqual(63084); + + // now submit it const postableBytes = marshalTx(tx); const result = await client.postTx(postableBytes); // console.log("Raw log:", result.raw_log);