Disable faucet docker job

This commit is contained in:
Ethan Frey
2020-02-04 14:00:24 +01:00
parent 220c0c69d6
commit 3fe792e058
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ workflows:
jobs:
- build
- lint
- faucet_docker
# - faucet_docker
- test
jobs:
+6
View File
@@ -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);