From 00afa7c143845415683035ec69fc101a4b34fc7a Mon Sep 17 00:00:00 2001 From: Christoph Michelbach Date: Wed, 26 Jun 2024 15:42:29 +0200 Subject: [PATCH] Fix script for starting test chain. --- start_ganache_async.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start_ganache_async.sh b/start_ganache_async.sh index 16ea18b..df4f99f 100755 --- a/start_ganache_async.sh +++ b/start_ganache_async.sh @@ -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"