Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmd, whisper/mailserver: revert to utils.Fatalf | Péter Szilágyi | 2017-02-23 | 1 | -31/+15 |
| | |||||
* | accounts, cmd: port packages over to the new logging system | Péter Szilágyi | 2017-02-23 | 1 | -2/+2 |
| | |||||
* | all: blidly swap out glog to our log15, logs need rework | Péter Szilágyi | 2017-02-23 | 1 | -19/+35 |
| | |||||
* | accounts, cmd, internal, mobile, node: canonical account URLs | Péter Szilágyi | 2017-02-13 | 1 | -1/+1 |
| | |||||
* | accounts, cmd, eth, internal, miner, node: wallets and HD APIs | Péter Szilágyi | 2017-02-13 | 1 | -6/+11 |
| | |||||
* | accounts, cmd, eth, internal, mobile, node: split account backends | Péter Szilágyi | 2017-02-13 | 1 | -17/+25 |
| | |||||
* | cmd/geth: improve command help messages (#3227) | Kenji Siu | 2016-11-10 | 1 | -40/+51 |
| | |||||
* | cmd/evm, cmd/geth, cmd/utils: move version handling to cmd/utils | Felix Lange | 2016-09-05 | 1 | -5/+5 |
| | |||||
* | cmd/utils, node: create account manager in package node | Felix Lange | 2016-08-17 | 1 | -13/+11 |
| | | | | | | | | | | | | | | | 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. | ||||
* | cmd/geth: fix the import error message | Yohann LEON | 2016-06-29 | 1 | -1/+1 |
| | | | | cmd/geth: include the error message on import failure | ||||
* | cmd: fix CLI package deprecation warnings | Péter Szilágyi | 2016-06-10 | 1 | -5/+10 |
| | |||||
* | cmd/geth: codegansta/cli package renamed to urfave/cli | Bas van Kervel | 2016-06-09 | 1 | -1/+1 |
| | |||||
* | cmd/geth: fix the keystore path in the accounts help text | Péter Szilágyi | 2016-06-08 | 1 | -1/+1 |
| | |||||
* | cmd/geth, console: fix reviewer issues | Péter Szilágyi | 2016-05-31 | 1 | -2/+2 |
| | |||||
* | cmd, console: split off the console into a reusable package | Péter Szilágyi | 2016-05-30 | 1 | -2/+3 |
| | |||||
* | accounts: improve API and add documentation | Felix Lange | 2016-04-12 | 1 | -1/+6 |
| | | | | | - Sign takes common.Address, not Account - Import/Export methods work with encrypted JSON keys | ||||
* | cmd/geth: add recovery procedure for AmbiguousAddrError | Felix Lange | 2016-04-12 | 1 | -1/+36 |
| | |||||
* | cmd/geth: print actual error when --unlock fails | Felix Lange | 2016-04-12 | 1 | -2/+2 |
| | |||||
* | accounts: add ErrDecrypt | Felix Lange | 2016-04-12 | 1 | -1/+1 |
| | |||||
* | accounts: cache key addresses | Felix Lange | 2016-04-12 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | In order to avoid disk thrashing for Accounts and HasAccount, address->key file mappings are now cached in memory. This makes it no longer necessary to keep the key address in the file name. The address of each key is derived from file content instead. There are minor user-visible changes: - "geth account list" now reports key file paths alongside the address. - If multiple keys are present for an address, unlocking by address is not possible. Users are directed to remove the duplicate files instead. Unlocking by index is still possible. - Key files are overwritten written in place when updating the password. | ||||
* | cmd/geth: add tests for account commands | Felix Lange | 2016-04-12 | 1 | -1/+6 |
| | |||||
* | accounts: streamline API | Felix Lange | 2016-04-12 | 1 | -8/+3 |
| | | | | | | - Manager.Accounts no longer returns an error. - Manager methods take Account instead of common.Address. - All uses of Account with unkeyed fields are converted. | ||||
* | cmd/geth: move account commands to accountcmd.go | Felix Lange | 2016-04-12 | 1 | -0/+283 |