aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/consolecmd.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd/geth: improve command help messages (#3227)Kenji Siu2016-11-101-10/+16
|
* node: ensure datadir can be co-inhabited by different instancesFelix Lange2016-09-161-2/+2
| | | | | 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 nodeFelix Lange2016-08-171-2/+2
| | | | | | | | | | | | | | | 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 everywhereFelix Lange2016-07-231-1/+18
| | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum.
* cmd: fix CLI package deprecation warningsPéter Szilágyi2016-06-101-5/+11
|
* cmd/geth: codegansta/cli package renamed to urfave/cliBas van Kervel2016-06-091-1/+1
|
* cmd, console: split off the console into a reusable packagePéter Szilágyi2016-05-301-0/+167