Skip to content

Commit

Permalink
Updated configs
Browse files Browse the repository at this point in the history
  • Loading branch information
k1rill-fedoseev committed Nov 25, 2019
1 parent fd549fe commit dc5b415
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,10 @@ orbs:
- run:
name: "Save ganache logs"
command: |
mkdir -p ./artifacts/logs/ganache
docker logs ganache_home > ./artifacts/logs/ganache/home.log
docker logs ganache_side > ./artifacts/logs/ganache/side.log
mkdir -p ./artifacts/logs/ethereum
docker logs ethereum-testnet_side-oracle_1 > ./artifacts/logs/ethereum/side-oracle.log
docker logs ethereum-testnet_ganache_home_1 > ./artifacts/logs/ganache/ganache_home.log
docker logs ethereum-testnet_ganache_side_1 > ./artifacts/logs/ganache/ganache_side.log
when: always
- run:
name: "Save binance logs"
Expand Down
2 changes: 1 addition & 1 deletion DEMO.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ Make sure, to first run demo in development mode, before trying to run it in the
docker kill binance-testnet_api-server_1
docker kill ethereum-testnet_ganache_home_1
docker kill ethereum-testnet_ganache_side_1
docker kill ethereum-testnet_side_oracle_1
docker kill ethereum-testnet_side-oracle_1
```
3. Remove testnets and validators data:
```
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum-testnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
- '8545:8545'
volumes:
- 'ganache_home_data:/app/db'
side_oracle:
side-oracle:
build: side-oracle
image: side-oracle
env_file: side-oracle/.env.development
Expand Down
2 changes: 1 addition & 1 deletion src/oracle/tss-sign/signer.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ async function consumer(msg) {
writeParams(parties, threshold)
let attempt = 1

const { tx, exchanges } = buildTx(from, account, data, attempt)
const { tx, exchanges } = await buildTx(from, account, data, attempt)

while (tx !== null) {
const signResult = await sign(keysFile, tx, publicKey, from)
Expand Down

0 comments on commit dc5b415

Please sign in to comment.