Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | node: ensure datadir can be co-inhabited by different instances | Felix Lange | 2016-09-16 | 1 | -63/+112 |
| | | | | | This change ensures that nodes started with different Name but same DataDir values don't use the same nodekey and IPC socket. | ||||
* | cmd/utils, node: create account manager in package node | Felix Lange | 2016-08-17 | 1 | -4/+30 |
| | | | | | | | | | | | | | | | 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. | ||||
* | rpc: add new client, use it everywhere | Felix Lange | 2016-07-23 | 1 | -4/+2 |
| | | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum. | ||||
* | node, p2p: move network config out of Server | Felix Lange | 2016-05-18 | 1 | -5/+3 |
| | | | | This silences a go vet message about copying p2p.Server in package node. | ||||
* | release, all: integrate the release service into geth | Péter Szilágyi | 2016-05-02 | 1 | -2/+1 |
| | |||||
* | common/versions, cmd/utils: add geth version contract | Gustav Simonsson | 2016-05-02 | 1 | -0/+1 |
| | |||||
* | rpc: various fixes/enhancements | Bas van Kervel | 2016-04-12 | 1 | -6/+14 |
| | | | | | | | | rpc: be less restrictive on the request id rpc: improved documentation console: upgrade web3.js to version 0.16.0 rpc: cache http connections rpc: rename wsDomains parameter to wsOrigins | ||||
* | rpc: add pub/sub support | Bas van Kervel | 2016-04-02 | 1 | -1/+1 |
| | |||||
* | cmd, node, rpc: readd inproc RPC client, expose via node | Péter Szilágyi | 2016-02-09 | 1 | -1/+54 |
| | |||||
* | cmd, common, node, rpc: rework naming convention to canonical one | Péter Szilágyi | 2016-02-09 | 1 | -12/+12 |
| | |||||
* | cmd, node, rpc: move websockets into node, break singleton | Péter Szilágyi | 2016-02-05 | 1 | -13/+72 |
| | |||||
* | cmd, common, node, rpc: move HTTP RPC into node, drop singletone aspect | Péter Szilágyi | 2016-02-05 | 1 | -44/+138 |
| | |||||
* | cmd, common, node, rpc: move IPC into the node itself | Péter Szilágyi | 2016-02-04 | 1 | -8/+92 |
| | |||||
* | internal/debug: APIs for profiling and tracing | Felix Lange | 2016-01-28 | 1 | -1/+2 |
| | | | | | | The debug package provides an RPC wrapper for glog settings and the debugging facilities of the Go runtime. They can be triggered through both command line flags and the IPC listener. | ||||
* | rpc: migrated the RPC insterface to a new reflection based RPC layer | Bas van Kervel | 2016-01-26 | 1 | -1/+6 |
| | |||||
* | core, eth, node, rpc: port the admin and debug API | Péter Szilágyi | 2015-12-15 | 1 | -3/+27 |
| | |||||
* | rpc: new RPC implementation with pub/sub support | Bas van Kervel | 2015-12-14 | 1 | -0/+10 |
| | |||||
* | cmd, eth, node, rpc, xeth: use single-instance services | Péter Szilágyi | 2015-11-27 | 1 | -87/+39 |
| | |||||
* | cmd, common, core, eth, node, rpc, tests, whisper, xeth: use protocol stacks | Péter Szilágyi | 2015-11-27 | 1 | -31/+93 |
| | |||||
* | node: customizable protocol and service stacks | Péter Szilágyi | 2015-11-27 | 1 | -0/+252 |