You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go version
// if it's installed properly
rm go1.9.linux-amd64.tar.gz
BUILD ETHEREUM
git clone https://github.com/ethereum/go-ethereum.git
cd go-ethereum
git checkout v1.6.7
make geth
CONNECT TO PRIVATE NETWORK
geth --datadir "./bether" account new
// Copy genesis.json and staticnodes.json into bether
geth --datadir "." init genesis.json
geth --rpc --rpcport "8000" --rpccorsdomain "*" --datadir "." --port "30303" --nodiscover --rpcapi "db,eth,net,web3,personal" --identity "one" --networkid 666 console
// console will be opened
net
// you must see peerCount as "1"