diff options
author | obscuren <geffobscura@gmail.com> | 2015-02-27 01:39:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-02-27 01:39:38 +0800 |
commit | c18ea4de147cb81bf5563a5727172d4103658b92 (patch) | |
tree | 09ecb2fe54902855fcef4c1873d64cce4e28f399 /eth/test/tests/common.sh | |
parent | 37e6870f64437a212fde383ab1538ad1e7e2acd9 (diff) | |
parent | 16ecda951b767800b4e09ad8e86e0866b05136be (diff) | |
download | go-tangerine-c18ea4de147cb81bf5563a5727172d4103658b92.tar go-tangerine-c18ea4de147cb81bf5563a5727172d4103658b92.tar.gz go-tangerine-c18ea4de147cb81bf5563a5727172d4103658b92.tar.bz2 go-tangerine-c18ea4de147cb81bf5563a5727172d4103658b92.tar.lz go-tangerine-c18ea4de147cb81bf5563a5727172d4103658b92.tar.xz go-tangerine-c18ea4de147cb81bf5563a5727172d4103658b92.tar.zst go-tangerine-c18ea4de147cb81bf5563a5727172d4103658b92.zip |
Merge branch 'blockpool2' of https://github.com/ethersphere/go-ethereum into ethersphere-blockpool2
Diffstat (limited to 'eth/test/tests/common.sh')
-rw-r--r-- | eth/test/tests/common.sh | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/eth/test/tests/common.sh b/eth/test/tests/common.sh deleted file mode 100644 index f66cfb43e..000000000 --- a/eth/test/tests/common.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -# launched by run.sh -function test_node { - rm -rf $DIR/$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 args $ARGS ${@:3}" - $ETH $ARGS ${@:3} & - PID=$! - PIDS="$PIDS $PID" -} - -function peer { - test_node $@ -loglevel 5 -logfile debug.log -maxpeer 1 -dial=false -}
\ No newline at end of file |