1. 29 6月, 2016 1 次提交
  2. 23 6月, 2016 1 次提交
  3. 10 6月, 2016 1 次提交
  4. 09 6月, 2016 1 次提交
  5. 31 5月, 2016 1 次提交
  6. 30 5月, 2016 1 次提交
  7. 25 5月, 2016 1 次提交
    • F
      eth: enable bad block reports · ca18202e
      Felix Lange 提交于
      We used to have reporting of bad blocks, but it was disabled
      before the Frontier release. We need it back because users
      are usually unable to provide the full RLP data of a bad
      block when it occurs.
      
      A shortcoming of this particular implementation is that the
      origin peer is not tracked for blocks received during eth/63
      sync. No origin peer info is still better than no report at
      all though.
      ca18202e
  8. 03 5月, 2016 1 次提交
  9. 02 5月, 2016 2 次提交
  10. 21 4月, 2016 2 次提交
    • P
    • F
      cmd/geth, jsre: improve the js command · 87ae0df4
      Felix Lange 提交于
      geth js stopped the JS runtime after running the first input file
      and blocked for pending callbacks. This commit makes it process
      all files and enables quitting with Ctrl-C regardless of callbacks.
      
      Error reporting is also improved. If a script fails to load, the error
      is printed and includes the backtrace. package jsre now ensures that
      otto is aware of the filename, the backtrace will contain them.
      
      Before:
      
      $ geth js bad.js; echo "exit $?"
      ... log messages ...
      exit 0
      
      After:
      
      $ geth js bad.js; echo "exit $?"
      ... log messages ...
      Fatal: JavaScript Error: Invalid number of input parameters
          at web3.js:3109:20
          at web3.js:4917:15
          at web3.js:4960:5
          at web3.js:4984:23
          at checkWork (bad.js:11:9)
          at bad.js:19:1
      
      exit 1
      87ae0df4
  11. 20 4月, 2016 1 次提交
  12. 12 4月, 2016 3 次提交
    • F
      cmd/geth: move account commands to accountcmd.go · 2dc20963
      Felix Lange 提交于
      2dc20963
    • 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
  13. 11 4月, 2016 1 次提交
  14. 04 4月, 2016 1 次提交
  15. 02 4月, 2016 1 次提交
  16. 01 4月, 2016 1 次提交
    • 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
  17. 24 3月, 2016 1 次提交
  18. 08 3月, 2016 1 次提交
  19. 09 2月, 2016 2 次提交
  20. 05 2月, 2016 2 次提交
  21. 04 2月, 2016 1 次提交
  22. 28 1月, 2016 1 次提交
    • F
      internal/debug: APIs for profiling and tracing · 3750d835
      Felix Lange 提交于
      The debug package provides an RPC wrapper for glog settings and the
      debugging facilities of the Go runtime. They can be triggered through
      both command line flags and the IPC listener.
      3750d835
  23. 26 1月, 2016 1 次提交
  24. 14 12月, 2015 1 次提交
  25. 09 12月, 2015 1 次提交
  26. 01 12月, 2015 1 次提交
  27. 27 11月, 2015 2 次提交
  28. 19 11月, 2015 1 次提交
  29. 10 11月, 2015 1 次提交
  30. 05 11月, 2015 1 次提交
  31. 03 11月, 2015 1 次提交
  32. 30 10月, 2015 1 次提交
  33. 22 10月, 2015 1 次提交
    • Z
      console: · 8b81ad1f
      zelig 提交于
      * lines with leading space are ommitted from history
      * exit processed even with whitespace around
      * all whitespace lines (not only empty ones) are ignored
      
      add 7 missing commands to admin api autocomplete
      
      registrar: methods now return proper error if reg addresses are not set. fixes #1457
      
      rpc/console: fix personal.newAccount() regression. Now all comms accept interactive password
      
      registrar: add registrar tests for errors
      
      crypto: catch AES decryption error on presale wallet import + fix error msg format. fixes #1580
      
      CLI: improve error message when starting a second instance of geth. fixes #1564
      
      cli/accounts: unlock multiple accounts. fixes #1785
      * make unlocking multiple accounts work with inline <() fd
      * passwdfile now correctly read only once
      * improve logs
      * fix CLI help text for unlocking
      
      fix regression with docRoot / admin API
      * docRoot/jspath passed to rpc/api ParseApis, which passes onto adminApi
      * docRoot field for JS console in order to pass when RPC is (re)started
      * improve flag desc for jspath
      
      common/docserver: catch http errors from response
      
      fix rpc/api tests
      
      common/natspec: fix end to end test (skipped because takes 8s)
      
      registrar: fix major regression:
      * deploy registrars on frontier
      * register HashsReg and UrlHint in GlobalRegistrar.
      * set all 3 contract addresses in code
      * zero out addresses first in tests
      8b81ad1f