aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/consolecmd.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd/geth: fix broken links to JavaScript-Console wiki in cmd line help (#16183)Domino Valdano2018-02-261-3/+3
| | | | | | * Fixed broken link to JavaScript-Console wiki in cmd line help * cmd/geth: Added missing r in 'JavaScript'
* cmd, console: support all termination signalsPéter Szilágyi2018-02-211-1/+2
|
* cmd/geth: add support for geth --rinkeby attachSorin Neacsu2017-12-161-2/+6
|
* cmd/geth: add support for geth attach --testnet (#15597)Sorin Neacsu2017-12-051-2/+10
|
* cmd/geth: fix geth attach --datadir=... (#15517)Maximilian Meister2017-11-281-1/+6
|
* whisper: use hexutil.UnmarshalFixedText for topic parsingBas van Kervel2017-06-211-1/+1
|
* cmd/geth: reorganise help section for new cli flag handlingBas van Kervel2017-05-251-2/+0
|
* cmd/geth: reorganise console/attach commands/flagsBas van Kervel2017-05-031-19/+27
|
* 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