- Sep 25, 2017
-
-
Lewis Marshall authored
This commit introduces a network simulation framework which can be used to run simulated networks of devp2p nodes. The intention is to use this for testing protocols, performing benchmarks and visualising emergent network behaviour.
-
- Aug 18, 2017
-
-
Felix Lange authored
The lock file was ineffective because opening leveldb storage in read-only mode doesn't really take the lock. Fix it by including a dedicated flock library (which is actually split out of goleveldb).
-
- Aug 09, 2017
-
-
Péter Szilágyi authored
-
- Aug 07, 2017
-
-
Egon Elbre authored
-
- Aug 05, 2017
-
-
Agustin Armellini Fischer authored
-
- Jul 18, 2017
-
-
Chase Wright authored
* node: Rename TrusterNodes * node: Rename TrusterNodes
-
- Jun 23, 2017
-
-
Felix Lange authored
-
- May 10, 2017
-
-
Péter Szilágyi authored
-
- Apr 25, 2017
-
-
Victor Farazdagi authored
-
- Apr 20, 2017
-
-
Péter Szilágyi authored
-
- Apr 12, 2017
-
-
Bas van Kervel authored
Currently http cors and websocket origins are a comma separated string in the config object. These are replaced with string arrays that are more expressive in case of a config file.
-
Felix Lange authored
* p2p/discover, p2p/discv5: add marshaling methods to Node * p2p/netutil: make Netlist decodable from TOML * common/math: encode nil HexOrDecimal256 as 0x0 * cmd/geth: add --config file flag * cmd/geth: add missing license header * eth: prettify Config again, fix tests * eth: use gasprice.Config instead of duplicating its fields * eth/gasprice: hide nil default from dumpconfig output * cmd/geth: hide genesis block in dumpconfig output * node: make tests compile * console: fix tests * cmd/geth: make TOML keys look exactly like Go struct fields * p2p: use discovery by default This makes the zero Config slightly more useful. It also fixes package node tests because Node detects reuse of the datadir through the NodeDatabase. * cmd/geth: make ethstats URL settable through config file * cmd/faucet: fix configuration * cmd/geth: dedup attach tests * eth: add comment for DefaultConfig * eth: pass downloader.SyncMode in Config This removes the FastSync, LightSync flags in favour of a more general SyncMode flag. * cmd/utils: remove jitvm flags * cmd/utils: make mutually exclusive flag error prettier It now reads: Fatal: flags --dev, --testnet can't be used at the same time * p2p: fix typo * node: add DefaultConfig, use it for geth * mobile: add missing NoDiscovery option * cmd/utils: drop MakeNode This exposed a couple of places that needed to be updated to use node.DefaultConfig. * node: fix typo * eth: make fast sync the default mode * cmd/utils: remove IPCApiFlag (unused) * node: remove default IPC path Set it in the frontends instead. * cmd/geth: add --syncmode * cmd/utils: make --ipcdisable and --ipcpath mutually exclusive * cmd/utils: don't enable WS, HTTP when setting addr * cmd/utils: fix --identity
-
- Apr 05, 2017
-
-
Péter Szilágyi authored
-
- Mar 09, 2017
-
-
Péter Szilágyi authored
-
- Feb 23, 2017
-
-
Péter Szilágyi authored
-
- Feb 13, 2017
-
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
Péter Szilágyi authored
-
- Jan 09, 2017
-
-
Felix Lange authored
go get github.com/gordonklaus/ineffassign ineffassign .
-
Felix Lange authored
-
- Jan 08, 2017
-
-
Victor Farazdagi authored
-
- Jan 06, 2017
-
-
Péter Szilágyi authored
-
Felix Lange authored
-
Felix Lange authored
-
Felix Lange authored
-
- Dec 20, 2016
-
-
Felix Lange authored
This change couldn't be automated because HexNumber was used for numbers of all sizes.
-
- Nov 29, 2016
-
-
Bas van Kervel authored
-
- Nov 22, 2016
-
-
Felix Lange authored
-
- Nov 18, 2016
-
-
Frank Wang authored
-
- Nov 14, 2016
-
-
Péter Szilágyi authored
-
- Nov 10, 2016
-
-
Felix Lange authored
-
- Nov 09, 2016
-
-
Zsolt Felföldi authored
-
- Sep 16, 2016
-
-
Felix Lange authored
-
Felix Lange authored
This change ensures that nodes started with different Name but same DataDir values don't use the same nodekey and IPC socket.
-
- Aug 17, 2016
-
-
Felix Lange authored
The account manager was previously created by packge cmd/utils as part of flag processing and then passed down into eth.Ethereum through its config struct. Since we are starting to create nodes which do not have eth.Ethereum as a registered service, the code was rearranged to register the account manager as its own service. Making it a service is ugly though and it doesn't really fix the root cause: creating nodes without eth.Ethereum requires duplicating lots of code. This commit splits utils.MakeSystemNode into three functions, making creation of other node/service configurations easier. It also moves the account manager into Node so it can be used by those configurations without requiring package eth.
-
- Jul 22, 2016
-
-
Felix Lange authored
The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum.
-
- Jul 14, 2016
-
-
Nchinda Nchinda authored
-
- May 18, 2016
-
-
Felix Lange authored
This silences a go vet message about copying p2p.Server in package node.
-