1. 03 5月, 2016 3 次提交
  2. 02 5月, 2016 4 次提交
  3. 30 4月, 2016 1 次提交
  4. 29 4月, 2016 3 次提交
  5. 28 4月, 2016 8 次提交
  6. 27 4月, 2016 2 次提交
  7. 26 4月, 2016 4 次提交
  8. 25 4月, 2016 3 次提交
  9. 22 4月, 2016 1 次提交
  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 2 次提交
    • J
      accouns/abi: refactored ABI package · 5127ec10
      Jeffrey Wilcke 提交于
      Refactored the abi package parsing and type handling. Relying mostly on
      package reflect as opposed to most of our own type reflection. Our own
      type reflection is still used however for cases such as Bytes and
      FixedBytes (abi: bytes•).
      
      This also inclused several fixes for slice handling of arbitrary and
      fixed size for all supported types.
      
      This also further removes implicit type casting such as assigning,
      for example `[2]T{} = []T{1}` will fail, however `[2]T{} == []T{1, 2}`
      (notice assigning *slice* to fixed size *array*). Assigning arrays to
      slices will always succeed if they are of the same element type.
      
      Incidentally also fixes #2379
      5127ec10
    • J
      VERSION, cmd/geth: bumped version · 18580e15
      Jeffrey Wilcke 提交于
      18580e15
  12. 19 4月, 2016 1 次提交
  13. 16 4月, 2016 2 次提交
  14. 15 4月, 2016 4 次提交