Fork of plugeth with any needed changes for statediff plugin
Go to file
Felix Lange 04c6369a09 p2p, p2p/discover: track bootstrap state in p2p/discover
This change simplifies the dial scheduling logic because it
no longer needs to track whether the discovery table has been
bootstrapped.
2015-12-17 23:38:54 +01:00
_data
accounts Merge pull request #2035 from bas-vk/rcp-v2-rebase 2015-12-14 17:38:10 +01:00
build
cmd Merge pull request #2072 from karalabe/admin-debug-apis 2015-12-15 11:33:18 +01:00
common rpc: new RPC implementation with pub/sub support 2015-12-14 16:34:05 +01:00
compression/rle
core core: tx pool skip price validation for "owned" transactions 2015-12-16 03:21:17 +01:00
crypto Merge pull request #2056 from fjl/fix-account-format 2015-12-10 10:45:00 +01:00
docker
errs
eth Merge pull request #1997 from zsfelfoldi/gasprice2 2015-12-17 12:45:45 +01:00
ethdb
event
generators
Godeps rpc/v2: optionally passing context argument to rpc v2 api methods 2015-12-16 03:48:08 +01:00
jsre
logger
metrics
miner rpc: new RPC implementation with pub/sub support 2015-12-14 16:34:05 +01:00
node core, eth, node, rpc: port the admin and debug API 2015-12-14 19:36:51 +02:00
p2p p2p, p2p/discover: track bootstrap state in p2p/discover 2015-12-17 23:38:54 +01:00
params
pow
rlp
rpc Merge pull request #2061 from zsfelfoldi/rpc-context 2015-12-16 11:12:06 +01:00
tests
trie trie: added error handling 2015-12-01 01:38:32 +01:00
whisper Merge pull request #2035 from bas-vk/rcp-v2-rebase 2015-12-14 17:38:10 +01:00
xeth core: tx pool skip price validation for "owned" transactions 2015-12-16 03:21:17 +01:00
.gitattributes
.gitignore
.gitmodules
.mailmap
.travis.yml crypto/secp256k1: remove dependency on libgmp 2015-12-03 21:12:13 +01:00
AUTHORS
CONTRIBUTING.md
COPYING
COPYING.LESSER
Makefile Makefile, cmd/geth: support building Android archives 2015-12-14 14:28:14 +02:00
README.md crypto/secp256k1: remove dependency on libgmp 2015-12-03 21:12:13 +01:00
VERSION

Ethereum Go

Official golang implementation of the Ethereum protocol

      | Linux   | OSX | ARM | Windows | Tests

----------|---------|-----|-----|---------|------ develop | Build+Status | Build+Status | Build+Status | Build+Status | Buildr+Status codecov.io master | Build+Status | Build+Status | Build+Status | Build+Status | Buildr+Status codecov.io

API Reference Gitter

Automated development builds

The following builds are build automatically by our build servers after each push to the develop branch.

Building the source

For prerequisites and detailed build instructions please read the Installation Instructions on the wiki.

Building geth requires both a Go and a C compiler. You can install them using your favourite package manager. Once the dependencies are installed, run

make geth

Executables

Go Ethereum comes with several wrappers/executables found in the cmd directory:

Command
geth Ethereum CLI (ethereum command line interface client)
bootnode runs a bootstrap node for the Discovery Protocol
ethtest test tool which runs with the tests suite: /path/to/test.json > ethtest --test BlockTests --stdin.
evm is a generic Ethereum Virtual Machine: evm -code 60ff60ff -gas 10000 -price 0 -dump. See -h for a detailed description.
disasm disassembles EVM code: `echo "6001"
rlpdump prints RLP structures

Command line options

geth can be configured via command line options, environment variables and config files.

To get the options available:

geth help

For further details on options, see the wiki

Contribution

If you'd like to contribute to go-ethereum please fork, fix, commit and send a pull request. Commits who do not comply with the coding standards are ignored (use gofmt!). If you send pull requests make absolute sure that you commit on the develop branch and that you do not merge to master. Commits that are directly based on master are simply ignored.

See Developers' Guide for more details on configuring your environment, testing, and dependency management.