good morning!!!!

Skip to content
Snippets Groups Projects
  1. Feb 21, 2016
  2. Feb 14, 2016
  3. Feb 11, 2016
  4. Feb 02, 2016
  5. Jan 26, 2016
  6. Dec 14, 2015
  7. Dec 01, 2015
  8. Nov 25, 2015
  9. Oct 29, 2015
  10. Aug 01, 2015
  11. Jul 23, 2015
  12. Jul 22, 2015
  13. Jul 20, 2015
  14. Jul 09, 2015
  15. Jul 07, 2015
  16. Jul 03, 2015
  17. Jul 02, 2015
  18. May 14, 2015
  19. May 12, 2015
  20. Mar 26, 2015
    • Viktor Trón's avatar
      settable etherbase · b375bbee
      Viktor Trón authored
      - etherbase flag for block reward destination
      - coinbase => etherbase
      - CLI- eth Config -> eth, xeth -> RPC / Miner
      - use primary instead of coinbase as the unlock magic wildcard
      - accounts: firstAddr/Coinbase -> Primary
      b375bbee
    • Viktor Trón's avatar
      max paranoia mode to UNsupport unencrypted keys entirely · 7577d126
      Viktor Trón authored
      - remove account export functionality from CLI
      - remove accountExport method,
      - remove unencrypted-keys flag from everywhere
      - improve documentation
      7577d126
    • Viktor Trón's avatar
      unlocking coinbase without knowing address · 11d2ebc0
      Viktor Trón authored
      - accounts: remove Manager.getKey
      - cli: for -unlock coinbase, use account manager Coinbase()
      11d2ebc0
    • Viktor Trón's avatar
      d1b52efd
    • Viktor Trón's avatar
      unlocking coinbase · fd8d18ec
      Viktor Trón authored
      - extract accounts.getKey method - if given empty address it retrieves coinbase (first account)
      - cli -unlock coinbase will unlock coinbase
      fd8d18ec
    • Viktor Trón's avatar
      import/export accounts · c4ea9218
      Viktor Trón authored
      - cli: add passwordfile flag
      - cli: change unlock flag only takes account
      - cli: with unlock you are prompted for password or use passfile with password flag
      - cli: unlockAccount used in normal client start (run) and accountExport
      - cli: getPassword used in accountCreate and accountImport
      - accounts: Manager.Import, Manager.Export
      - crypto: SaveECDSA (to complement LoadECDSA) to save to file
      - crypto: NewKeyFromECDSA added (used in accountImport and New = generated constructor)
      c4ea9218
  21. Mar 16, 2015
  22. Mar 10, 2015
  23. Mar 09, 2015
  24. Mar 08, 2015
  25. Mar 07, 2015
    • Felix Lange's avatar
      accounts: fix uses of sync.RWMutex · d6a73329
      Felix Lange authored
      RWMutexes must be write-locked when writing in order
      to actually protect the writes.
      d6a73329
    • Felix Lange's avatar
      accounts: use time.Duration correctly · afc530ea
      Felix Lange authored
      There is no point to using time.Duration if the value is interpreted as
      milliseconds. Callers should use the standard multiplication idiom to
      choose the unit. In fact, the only caller outside of the tests already
      does so.
      afc530ea
    • Felix Lange's avatar
      accounts: use pointers consistently · fda7b4c7
      Felix Lange authored
      Account is now always a non-pointer. This will be important once
      the manager starts remembering accounts.
      
      AccountManager is now always a pointer because it contains locks
      and locks cannot be copied.
      fda7b4c7
Loading