Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | rpc: refactor subscriptions and filters | Bas van Kervel | 2016-08-17 | 1 | -6/+6 |
| | |||||
* | rpc: add new client, use it everywhere | Felix Lange | 2016-07-23 | 1 | -1/+1 |
| | | | | | | The new client implementation supports concurrent requests, subscriptions and replaces the various ad hoc RPC clients throughout go-ethereum. | ||||
* | rpc: fix bad method error for batch requests | Felix Lange | 2016-07-23 | 1 | -1/+6 |
| | | | | | | If a batch request contained an invalid method, the server would reply with a non-batch error response. Fix this by tracking an error for each batch element. | ||||
* | rpc: remove grace period when shutting down the server | Felix Lange | 2016-07-23 | 1 | -10/+5 |
| | | | | | | | | | The server delayed closing of connections for 3s when stopping. This was supposed to allow for slow handlers, but it didn't really work. When geth quits, it will just exit immediately after quitting the server. Removing the timer makes testing easier because all connections will be closed after Stop returns. | ||||
* | README, core, rpc: fix various typos | Fabio Berger | 2016-06-22 | 1 | -3/+3 |
| | |||||
* | cmd/geth, internal/web3ext, rpc: surface rpc module, fix shh, fix miner | Péter Szilágyi | 2016-05-11 | 1 | -2/+3 |
| | |||||
* | rpc: remove NotifierContextKey | Felix Lange | 2016-04-16 | 1 | -7/+4 |
| | | | | | | | Context keys must have a unique type in order to prevent any unintented clashes. The code used int(1) as key. Fix it by implementing the pattern recommended by package context. | ||||
* | rpc: add pub/sub support | Bas van Kervel | 2016-04-02 | 1 | -121/+107 |
| | |||||
* | rpc/http: improve request handling | Bas van Kervel | 2016-03-23 | 1 | -14/+46 |
| | |||||
* | cmd, common, node, rpc: rework naming convention to canonical one | Péter Szilágyi | 2016-02-09 | 1 | -2/+2 |
| | |||||
* | cmd, eth, rpc: fix some RPC issues with pending blocks | Péter Szilágyi | 2016-02-03 | 1 | -2/+0 |
| | |||||
* | rpc: migrated the RPC insterface to a new reflection based RPC layer | Bas van Kervel | 2016-01-26 | 1 | -0/+438 |
| | |||||
* | Move HTTP transport to sub package of RPC | Taylor Gerring | 2015-01-28 | 1 | -104/+0 |
| | |||||
* | Move GetRequestReply to EthereumApi | Taylor Gerring | 2015-01-21 | 1 | -1/+1 |
| | | | | Off of jsonWrapper | ||||
* | cleanup | Taylor Gerring | 2015-01-13 | 1 | -1/+1 |
| | |||||
* | Added license headers | Taylor Gerring | 2015-01-13 | 1 | -0/+16 |
| | |||||
* | begin conversion to rpc over http | Taylor Gerring | 2015-01-13 | 1 | -12/+33 |
| | | | | | Per specification at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC | ||||
* | ethpipe => xeth (eXtended ETHereum) | obscuren | 2014-10-31 | 1 | -3/+3 |
| | |||||
* | ethlog => logger | obscuren | 2014-10-31 | 1 | -6/+6 |
| | |||||
* | Merge eth-go repository into go-ethereum | Felix Lange | 2014-10-23 | 1 | -2/+2 |
| | | | | mist, etheruem have been moved to cmd/ | ||||
* | WIP RPC interface | obscuren | 2014-10-21 | 1 | -0/+67 |