From 072f0534db560cbce01f69cf4a38fe7c95af7fc0 Mon Sep 17 00:00:00 2001 From: Jongwhan Lee <51560997+leejw51crypto@users.noreply.github.com> Date: Tue, 20 Jul 2021 00:02:33 +0900 Subject: [PATCH] build: update `init.sh` to not include `--trace` flag (#319) --- init.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/init.sh b/init.sh index e8f449eb..9af30fac 100755 --- a/init.sh +++ b/init.sh @@ -5,6 +5,10 @@ MONIKER="localtestnet" KEYRING="test" KEYALGO="eth_secp256k1" LOGLEVEL="info" +# to trace evm +#TRACE="--trace" +TRACE="" + # remove existing daemon and client rm -rf ~/.ethermintd* @@ -80,4 +84,4 @@ if [[ $1 == "pending" ]]; then fi # Start the node (remove the --pruning=nothing flag if historical queries are not needed) -ethermintd start --pruning=nothing --trace --log_level $LOGLEVEL --minimum-gas-prices=0.0001aphoton +ethermintd start --pruning=nothing $TRACE --log_level $LOGLEVEL --minimum-gas-prices=0.0001aphoton