Skip to content

Instantly share code, notes, and snippets.

@cicorias
Last active March 30, 2017 15:58
Show Gist options
  • Save cicorias/6e6315ac42ec1f0e4499ea641648b442 to your computer and use it in GitHub Desktop.
Save cicorias/6e6315ac42ec1f0e4499ea641648b442 to your computer and use it in GitHub Desktop.
Starting geth on the Test Net...
ps -a |grep geth | cut -d ' ' -f1 | xargs kill
#!/usr/bin/env bash
set -x
RPC="--rpc --rpcaddr 0.0.0.0 --rpcapi admin,debug,eth,miner,net,personal,shh,txpool,web3 --rpccorsdomain \"*\""
MINE="--mine --minerthreads 1 --etherbase 0xb43cd96eDF87fB9686fB18A932FF2Aa011A46c37"
VERBOSITY="--verbosity 3"
LOGFILE="./geth.log"
nohup geth $VERBOSITY --testnet --networkid 3 --identity "shawncicoriadev" --fast $RPC $MINE 1>$LOGFILE 2>&1 &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment