aboutsummaryrefslogtreecommitdiffstats
path: root/eth/test/tests/common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'eth/test/tests/common.sh')
-rw-r--r--eth/test/tests/common.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/eth/test/tests/common.sh b/eth/test/tests/common.sh
index 74db073f7..f66cfb43e 100644
--- a/eth/test/tests/common.sh
+++ b/eth/test/tests/common.sh
@@ -3,14 +3,14 @@
# launched by run.sh
function test_node {
rm -rf $DIR/$1
- ARGS="-datadir $DIR/$1 -debug debug -seed=false -shh=false -id test$1"
+ ARGS="-datadir $DIR/$1 -debug debug -seed=false -shh=false -id test$1 -port 303$1"
if [ "" != "$2" ]; then
chain="chains/$2.chain"
echo "import chain $chain"
$ETH $ARGS -loglevel 3 -chain $chain | grep CLI |grep import
fi
- echo "starting test node $1 with extra args ${@:3}"
- $ETH $ARGS -port 303$1 ${@:3} &
+ echo "starting test node $1 with args $ARGS ${@:3}"
+ $ETH $ARGS ${@:3} &
PID=$!
PIDS="$PIDS $PID"
}