aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/accountcmd.go
Commit message (Collapse)AuthorAgeFilesLines
* [release/1.4.7] cmd: fix CLI package deprecation warningsPéter Szilágyi2016-06-141-5/+10
| | | | (cherry picked from commit 90e07b19abaa950eaaff2eecc4918b1d16ebbcaf)
* [release/1.4.7] cmd/geth: codegansta/cli package renamed to urfave/cliBas van Kervel2016-06-141-1/+1
| | | | (cherry picked from commit 861add3d72bcfc6c6a8976eb82dc3e7b5288883e)
* [release/1.4.7] cmd/geth: fix the keystore path in the accounts help textPéter Szilágyi2016-06-141-1/+1
| | | | (cherry picked from commit 7c0eb47dfb957c045361cf7297b2935fd3e6a25a)
* [release/1.4.6] cmd/geth, console: fix reviewer issuesPéter Szilágyi2016-06-061-2/+2
| | | | (cherry picked from commit da729e5b386ca0fd32344dcc1fd63d14c0bb39ab)
* [release/1.4.6] cmd, console: split off the console into a reusable packagePéter Szilágyi2016-06-061-2/+3
| | | | (cherry picked from commit ffaf58f0a98bd987bbe76e8669bb22c405dcd62a)
* accounts: improve API and add documentationFelix Lange2016-04-121-1/+6
| | | | | - Sign takes common.Address, not Account - Import/Export methods work with encrypted JSON keys
* cmd/geth: add recovery procedure for AmbiguousAddrErrorFelix Lange2016-04-121-1/+36
|
* cmd/geth: print actual error when --unlock failsFelix Lange2016-04-121-2/+2
|
* accounts: add ErrDecryptFelix Lange2016-04-121-1/+1
|
* accounts: cache key addressesFelix Lange2016-04-121-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 commandsFelix Lange2016-04-121-1/+6
|
* accounts: streamline APIFelix Lange2016-04-121-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.goFelix Lange2016-04-121-0/+283