1. 19 8月, 2016 1 次提交
  2. 18 8月, 2016 1 次提交
  3. 17 8月, 2016 9 次提交
  4. 16 8月, 2016 4 次提交
  5. 09 8月, 2016 5 次提交
  6. 08 8月, 2016 1 次提交
  7. 06 8月, 2016 5 次提交
    • F
      Merge pull request #2892 from fjl/vm-hide-ecrecover-message · 4f652279
      Felix Lange 提交于
      core/vm: hide ecrecover error message
      4f652279
    • F
      core/vm: hide ecrecover error message · e4736fe4
      Felix Lange 提交于
      Fixes #2825
      e4736fe4
    • F
      rpc: add context argument to EthSubscribe · e3292539
      Felix Lange 提交于
      It's inconsistent not to pass it and most callers will
      work with contexts anyway.
      e3292539
    • F
      rpc: ensure client doesn't block for slow subscribers · f5f042ff
      Felix Lange 提交于
      I initially made the client block if the 100-element buffer was
      exceeded. It turns out that this is inconvenient for simple uses of the
      client which subscribe and perform calls on the same goroutine, e.g.
      
          client, _ := rpc.Dial(...)
          ch := make(chan int) // note: no buffer
          sub, _ := client.EthSubscribe(ch, "something")
          for event := range ch {
              client.Call(...)
          }
      
      This innocent looking code will lock up if the server suddenly decides
      to send 2000 notifications. In this case, the client's main loop won't
      accept the call because it is trying to deliver a notification to ch.
      
      The issue is kind of hard to explain in the docs and few people will
      actually read them. Buffering is the simple option and works with close
      to no overhead for subscribers that always listen.
      f5f042ff
    • F
      Merge pull request #2889 from fjl/godeps-update-notify · d445a9aa
      Felix Lange 提交于
      Godeps: update github.com/rjeczalik/notify to f627deca7a51
      d445a9aa
  8. 05 8月, 2016 2 次提交
  9. 29 7月, 2016 1 次提交
  10. 27 7月, 2016 2 次提交
  11. 26 7月, 2016 4 次提交
  12. 25 7月, 2016 5 次提交