Skip to content

Commit

Permalink
Fix failed test on travis
Browse files Browse the repository at this point in the history
* Change gas limt to 6000000
* Change ganache container compose file
  • Loading branch information
sc0Vu committed Jun 24, 2018
1 parent 07f730d commit 234b1e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/ganache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ RUN npm install -g ganache-cli

EXPOSE 8545

CMD ganache-cli --hostname=0.0.0.0
CMD ganache-cli -g 0 -l 6000000 --hostname=0.0.0.0
2 changes: 1 addition & 1 deletion scripts/test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

ganache-cli -g 0 -l 0 > /dev/null &
ganache-cli -g 0 -l 6000000 > /dev/null &
ganachecli_pid=$!
echo "Start ganache-cli pid: $ganachecli_pid and sleep 3 seconds"

Expand Down

0 comments on commit 234b1e6

Please sign in to comment.