Last active
March 30, 2017 15:58
-
-
Save cicorias/6e6315ac42ec1f0e4499ea641648b442 to your computer and use it in GitHub Desktop.
Starting geth on the Test Net...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ps -a |grep geth | cut -d ' ' -f1 | xargs kill |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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