Skip to content

Commit

Permalink
start geth threads script
Browse files Browse the repository at this point in the history
  • Loading branch information
winsvega committed Jun 25, 2019
1 parent dddae98 commit 5222fb6
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Retesteth/gethTCP/startGethThreads.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
threads=1
if [ "${1:-0}" -gt 1 ]
then
threads=$1
fi

echo $threads
for (( i=0; i<$threads; i++ ))
do
geth retesteth --rpcport $((8545+$i)) &
done

0 comments on commit 5222fb6

Please sign in to comment.