1. 28 9月, 2016 1 次提交
    • F
      [release/1.4.14] cmd/utils: don't check for stderr redirect on windows · 25205d64
      Felix Lange 提交于
      The redirect check did not work on Go 1.6 and below because Stat
      returned an error for stdout and stderr. In Go 1.7 Stat works on stdout
      but doesn't return anything meaningful, causing cmd/geth test failures
      because the message is printed to stderr only. Fix it by printing to
      stdout only.
      
      (cherry picked from commit b04219fd)
      25205d64
  2. 16 7月, 2016 4 次提交
  3. 29 6月, 2016 3 次提交
  4. 24 6月, 2016 3 次提交
  5. 15 6月, 2016 1 次提交
  6. 14 6月, 2016 1 次提交
  7. 06 6月, 2016 1 次提交
  8. 09 5月, 2016 1 次提交
  9. 06 5月, 2016 1 次提交
  10. 02 5月, 2016 2 次提交
  11. 21 4月, 2016 1 次提交
  12. 15 4月, 2016 2 次提交
  13. 14 4月, 2016 1 次提交
  14. 12 4月, 2016 6 次提交
    • P
      a1f1c404
    • F
      cmd/utils: fix --password on Windows · ea005a02
      Felix Lange 提交于
      Text files created on Windows typically have \r\n line endings.
      Trim them when reading password files.
      ea005a02
    • F
      accounts: streamline API · 46e8940b
      Felix Lange 提交于
      - Manager.Accounts no longer returns an error.
      - Manager methods take Account instead of common.Address.
      - All uses of Account with unkeyed fields are converted.
      46e8940b
    • F
      accounts, crypto: move keystore to package accounts · 85e6c40c
      Felix Lange 提交于
      The account management API was originally implemented as a thin layer
      around crypto.KeyStore, on the grounds that several kinds of key stores
      would be implemented later on. It turns out that this won't happen so
      KeyStore is a superflous abstraction.
      
      In this commit crypto.KeyStore and everything related to it moves to
      package accounts and is unexported.
      85e6c40c
    • F
      cmd/geth, cmd/utils: improve input handling · dff9b424
      Felix Lange 提交于
      These changes make prompting behave consistently on all platforms:
      
      * The input buffer is now global.
        Buffering was previously set up for each prompt, which can cause weird
        behaviour, e.g. when running "geth account update <input.txt" where
        input.txt contains three lines. In this case, the first password
        prompt would fill up the buffer with all lines and then use only the
        first one.
      
      * Print the "unsupported terminal" warning only once.
        Now that stdin prompting has global state, we can use it to track
        the warning there.
      
      * Work around small liner issues, particularly on Windows.
        Prompting didn't work under most of the third-party terminal emulators
        on Windows because liner assumes line editing is always available.
      dff9b424
    • B
      rpc: various fixes/enhancements · aa9fff3e
      Bas van Kervel 提交于
      rpc: be less restrictive on the request id
      rpc: improved documentation
      console: upgrade web3.js to version 0.16.0
      rpc: cache http connections
      rpc: rename wsDomains parameter to wsOrigins
      aa9fff3e
  15. 11 4月, 2016 1 次提交
  16. 07 4月, 2016 1 次提交
  17. 02 4月, 2016 1 次提交
  18. 01 4月, 2016 2 次提交
    • J
      cmd/utils, miner: A/B testing JIT VM. Disabled for miners · bbeaab7e
      Jeffrey Wilcke 提交于
      This PR introduces a 10% probability that you'll run the client with the
      JIT enabled testing the new client and helps us potentially catch
      errors when reported.
      
      This feature is **disabled** for miners (disabling the JIT completely).
      The JIT can however be force for miners if they enable both --jitvm and
      --forcejit.
      bbeaab7e
    • J
      core: added basic chain configuration · f0cbebb1
      Jeffrey Wilcke 提交于
      Added chain configuration options and write out during genesis database
      insertion. If no "config" was found, nothing is written to the database.
      
      Configurations are written on a per genesis base. This means
      that any chain (which is identified by it's genesis hash) can have their
      own chain settings.
      f0cbebb1
  19. 24 3月, 2016 2 次提交
  20. 23 3月, 2016 2 次提交
  21. 12 3月, 2016 1 次提交
  22. 09 3月, 2016 1 次提交
  23. 08 3月, 2016 1 次提交