Skip to content

Commit

Permalink
Fix script for starting test chain.
Browse files Browse the repository at this point in the history
  • Loading branch information
m1cm1c committed Jun 26, 2024
1 parent 7236755 commit 00afa7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion start_ganache_async.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

ganacheOutputTmpFile=`mktemp`
npx ganache-cli --gasLimit 10000000 -m "$MNEMONIC" 2>&1 >> "$ganacheOutputTmpFile" &
tail -n0 -f "$ganacheOutputTmpFile" | sed '/Listening on/ q'
tail -n+0 -f "$ganacheOutputTmpFile" | sed '/Listening on/ q'
echo "Chain started"

0 comments on commit 00afa7c

Please sign in to comment.