-
Notifications
You must be signed in to change notification settings - Fork 20.2k
Developers' Guide
We assume that you have go
installed, GOPATH
is set.
Note:You must have your working copy under $GOPATH/src/github.com/ethereum/go-ethereum
. You also usually want to checkout the develop
branch (instead of master).
Since go
does not use relative path for import, working in any other directory will have no effect, since the import paths will be appended to $GOPATH/src
, and if the lib does not exist, the version at master HEAD will be downloaded.
Most likely you will be working from your fork of go-ethereum
, let's say from github.com/nirname/go-ethereum
. Clone or move your fork into the right place:
git clone [email protected]:nirname/go-ethereum.git $GOPATH/src/github.com/ethereum/go-ethereum
go-ethereum uses Godep to manage dependencies.
Install godep:
go get github.com/tools/godep
Make sure that go binaries are on your executable path:
PATH=$GOPATH/bin:$PATH
godep
should be prepended to all go calls build
, install
and test
.
Alternatively, you can prepend the go-ethereum Godeps directory to your current GOPATH
:
GOPATH=`godep path`:$GOPATH
Switch to the go-ethereum repository root directory (Godep expects a local Godeps folder ).
Each wrapper/executable found in
the cmd
directory can be built individually.
Note: Geth (the ethereum command line client) is the focus of the Frontier release.
To build the CLI:
godep go install -v ./cmd/geth
See the documentation on how to use Geth
Note: Mist is not officially released as part of Frontier
For the GUI, you need to install QT5
and set variables.
On OSX with a brew install of qt5
:
export PKG_CONFIG_PATH=/usr/local/Cellar/qt5/5.4.0/lib/pkgconfig
export CGO_CPPFLAGS=-I/usr/local/Cellar/qt5/5.4.0/include/QtCore/5.4.0/QtCore
export LD_LIBRARY_PATH=/usr/local/Cellar/qt5/5.4.0/lib
See the instructions on the wiki
With these prerequisites in place, compile mist
with:
godep go build -v ./cmd/mist
Mist does not automatically look in the right location for its GUI assets. For this reason you need to launch it from its build directory
cd $GOPATH/src/github.com/ethereum/go-ethereum/cmd/mist && mist
or supply an absolute -asset_path
option:
mist -asset_path $GOPATH/src/github.com/ethereum/go-ethereum/cmd/mist/assets
To make life easier try git flow it sets this all up and streamlines your work flow.
Testing one library:
godep go test -v -cpu 4 ./eth
Using options -cpu
(number of cores allowed) and -v
(logging even if no error) is recommended.
Testing only some methods:
godep go test -v -cpu 4 ./eth -run TestMethod
Note: here all tests with prefix TestMethod will be run, so if you got TestMethod, TestMethod1, then both!
Running benchmarks, eg.:
cd bzz
godep go test -v -cpu 4 -bench . -run BenchmarkJoin
for more see go test flags
See integration testing information on the Testing wiki page
To update a dependency version (for example, to include a new upstream fix), run
go get -u <foo/bar>
godep update <foo/...>
To track a new dependency, add it to the project as normal than run
godep save ./...
Changes to the Godeps folder should be manually verified then committed.
To make life easier try git flow it sets this all up and streamlines your work flow.
Only github is used to track issues. (Please include the commit and branch when reporting an issue.)
Pull requests should by default commit on the develop
branch.
The master
branch is only used for finished stable major releases.
The code uses pprof
on localhost port 6060 by default if geth
is started with the --pprof
option. So bring up http://localhost:6060/debug/pprof to see the heap, running routines etc. By clicking full goroutine stack dump (clicking http://localhost:6060/debug/pprof/goroutine?debug=2) you can generate trace that is useful for debugging.
Note that if you run multiple instances of geth
, this port will only work for the first instance that was launched. If you want to generate stacktraces for these other instances, you need to start them up choosing an alternative pprof port. Make sure you are redirecting stderr to a logfile.
geth -port=30300 -loglevel 5 --pprof --pprofport 6060 2>> /tmp/00.glog
geth -port=30301 -loglevel 5 --pprof --pprofport 6061 2>> /tmp/01.glog
geth -port=30302 -loglevel 5 --pprof --pprofport 6062 2>> /tmp/02.glog
Alternatively if you want to kill the clients (in case they hang or stalled synching, etc) but have the stacktrace too, you can use the -QUIT
signal with kill
:
killall -QUIT geth
This will dump stracktraces for each instance to their respective log file.
Sources are formatted according to the Go Formatting Style.
-
P2P 101: a tutorial about setting up and creating a p2p server and p2p sub protocol.
-
How to Whisper: an introduction to whisper.