aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/utils.go
Commit message (Collapse)AuthorAgeFilesLines
* rpc: fix megacheck warningsEgon Elbre2017-08-081-24/+3
|
* all: import "context" instead of "golang.org/x/net/context"Felix Lange2017-03-231-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: format filter ID according to spec for quantitiesBas van Kervel2016-09-011-1/+10
|
* rpc: refactor subscriptions and filtersBas van Kervel2016-08-171-8/+34
|
* rpc: add new client, use it everywhereFelix Lange2016-07-231-29/+0
| | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum.
* cmd/geth, internal/web3ext, rpc: surface rpc module, fix shh, fix minerPéter Szilágyi2016-05-111-1/+1
|
* rpc: various fixes/enhancementsBas van Kervel2016-04-121-1/+1
| | | | | | | | 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
* rpc: add pub/sub supportBas van Kervel2016-04-021-6/+20
|
* cmd, common, node, rpc: move HTTP RPC into node, drop singletone aspectPéter Szilágyi2016-02-051-2/+1
|
* rpc: add jsonrpc version to module request, use json typesPéter Szilágyi2016-02-041-9/+7
|
* rpc: migrated the RPC insterface to a new reflection based RPC layerBas van Kervel2016-01-261-0/+246