Нема описа

Felix Lange 5c949d3b3b fdtrack: temporary hack for tracking file descriptor usage пре 10 година
Godeps 5c949d3b3b fdtrack: temporary hack for tracking file descriptor usage пре 10 година
_data 8df689bd44 Chain tests пре 11 година
accounts 98db08c42f Merge pull request #1548 from fjl/accounts-test-deflake пре 10 година
build bfbcfbe4a9 all: fix license headers one more time пре 10 година
cmd 5c949d3b3b fdtrack: temporary hack for tracking file descriptor usage пре 10 година
common fd2356c620 common: remove config.go пре 10 година
compression bfbcfbe4a9 all: fix license headers one more time пре 10 година
core cc6c5846e5 Merge pull request #1568 from obscuren/issue-1559 пре 10 година
crypto 3f07afbbd2 remove elliptic.P224 usage пре 10 година
docker 33083e6f6c Revert "Revert "refactor Dockerfile"" пре 10 година
errs bfbcfbe4a9 all: fix license headers one more time пре 10 година
eth 6adbaabc65 eth, eth/downloader: don't report stall if fetcher filled the block пре 10 година
ethdb 1fad8798ec Merge pull request #1515 from fjl/license-fixes пре 10 година
event bfbcfbe4a9 all: fix license headers one more time пре 10 година
fdtrack 5c949d3b3b fdtrack: temporary hack for tracking file descriptor usage пре 10 година
generators bfbcfbe4a9 all: fix license headers one more time пре 10 година
jsre 1fad8798ec Merge pull request #1515 from fjl/license-fixes пре 10 година
logger bfbcfbe4a9 all: fix license headers one more time пре 10 година
metrics bf48ed32dd metrics: fix file descriptor leak when reading disk stats on linux пре 10 година
miner bfbcfbe4a9 all: fix license headers one more time пре 10 година
p2p 5c949d3b3b fdtrack: temporary hack for tracking file descriptor usage пре 10 година
params 1fad8798ec Merge pull request #1515 from fjl/license-fixes пре 10 година
pow bfbcfbe4a9 all: fix license headers one more time пре 10 година
rlp bfbcfbe4a9 all: fix license headers one more time пре 10 година
rpc 5c949d3b3b fdtrack: temporary hack for tracking file descriptor usage пре 10 година
tests 03c39d4fc0 tests: updated пре 10 година
trie 1fad8798ec Merge pull request #1515 from fjl/license-fixes пре 10 година
whisper bfbcfbe4a9 all: fix license headers one more time пре 10 година
xeth 81e2124ea2 improved error detection and handling for NewTransactionFromBytes пре 10 година
.gitignore 97c37356fd updated ignore пре 10 година
.gitmodules 92c6327593 cmd/geth, jsre: updated ethereum.js => web3.js пре 10 година
.mailmap b1af5af30e Adjust .mailmap пре 10 година
.travis.yml 5a41326521 Travis container support пре 10 година
AUTHORS ea54283b30 all: update license information пре 10 година
COPYING ea54283b30 all: update license information пре 10 година
COPYING.LESSER ea54283b30 all: update license information пре 10 година
Makefile 36a6b16a3b removed console command пре 10 година
README.md b2d18393c4 README.md: update copyright пре 10 година

README.md

Ethereum Go

Ethereum Go Client, by Jeffrey Wilcke (and some other people).

      | Linux   | OSX | ARM | Windows | Tests

----------|---------|-----|-----|---------|------ develop | | | | | Coverage Status master | | | | | Coverage Status

Bugs Stories in Ready Stories in Progress 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 two external dependencies, Go and GMP. 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:

  • 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" | disasm
  • 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.