Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | all: import "context" instead of "golang.org/x/net/context" | Felix Lange | 2017-03-23 | 1 | -2/+1 |
| | | | | | | | | | | There is no need to depend on the old context package now that the minimum Go version is 1.7. The move to "context" eliminates our weird vendoring setup. Some vendored code still uses golang.org/x/net/context and it is now vendored in the normal way. This change triggered new vet checks around context.WithTimeout which didn't fire with golang.org/x/net/context. | ||||
* | rpc: add new client, use it everywhere | Felix Lange | 2016-07-23 | 1 | -38/+11 |
| | | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum. | ||||
* | rpc: add pub/sub support | Bas van Kervel | 2016-04-02 | 1 | -1/+1 |
| | |||||
* | rpc: simplify inproc client | Felix Lange | 2016-03-01 | 1 | -69/+19 |
| | | | | Fixes #2277 | ||||
* | cmd, node, rpc: readd inproc RPC client, expose via node | Péter Szilágyi | 2016-02-09 | 1 | -0/+111 |