cicorias
4/14/2017 - 3:59 PM

quick run of geth

quick run of geth

#!/usr/bin/env bash
set -x
COINBASE=0xb43cd96eDF87fB9686fB18A932FF2Aa011A46c37
RPC="--rpc --rpcaddr "0.0.0.0" --rpcapi "admin,debug,eth,miner,net,personal,shh,txpool,web3" --rpccorsdomain "*"
MINE="--mine --minerthreads 1" --etherbase $COINBASE"
VERBOSITY="--verbosity 3"
LOGFILE='2>1 1>geth.log'

nohup geth --networkid 3 --identity shawncicoriadev --fast $RPC $MINE $VERBOSITY $LOGFILE