mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
Disable faucet docker job
This commit is contained in:
parent
220c0c69d6
commit
3fe792e058
@ -5,7 +5,7 @@ workflows:
|
||||
jobs:
|
||||
- build
|
||||
- lint
|
||||
- faucet_docker
|
||||
# - faucet_docker
|
||||
- test
|
||||
|
||||
jobs:
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user