Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | all: import "context" instead of "golang.org/x/net/context" | Felix Lange | 2017-03-23 | 1 | -1/+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. | ||||
* | core/vm: move Log to core/types | Felix Lange | 2017-01-06 | 1 | -4/+3 |
| | | | | | | | | This significantly reduces the dependency closure of ethclient, which no longer depends on core/vm as of this change. All uses of vm.Logs are replaced by []*types.Log. NewLog is gone too, the constructor simply returned a literal. | ||||
* | Merge pull request #3505 from bas-vk/txinblock | Péter Szilágyi | 2017-01-04 | 1 | -1/+1 |
|\ | | | | | ethclient: hex encode request args for TransactionInBlock | ||||
| * | ethclient: hex encode request args for TransactionInBlock | Bas van Kervel | 2017-01-03 | 1 | -1/+1 |
| | | |||||
* | | ethclient: pass ptr when parsing eth_getTransactionByHash result | Bas van Kervel | 2016-12-22 | 1 | -1/+1 |
|/ | |||||
* | ethclient, ethereum: add NotFound, split transactions out of ChainReader | Felix Lange | 2016-12-05 | 2 | -16/+35 |
| | | | | | | | | | ethclient now returns ethereum.NotFound if the server returns null and no error while accessing blockchain data. The light client cannot provide arbitrary transactions. The change to split transaction access into its own interface emphasizes that transactions should not be relied on and recommends use of logs. | ||||
* | ethclient: use package hexutil for number encoding | Felix Lange | 2016-12-05 | 1 | -2/+2 |
| | |||||
* | ethclient: don't crash if server returns null uncle header | Felix Lange | 2016-12-05 | 1 | -0/+3 |
| | | | | | It should never return null for a known uncle, but even if it does we can't just crash. | ||||
* | ethclient: "addresses" -> "address" in filter query encoding | Felix Lange | 2016-11-28 | 1 | -1/+1 |
| | |||||
* | ethclient: use package hexutil for JSON handling | Felix Lange | 2016-11-28 | 1 | -34/+35 |
| | |||||
* | core/types, params: EIP#155 | Jeffrey Wilcke | 2016-11-13 | 1 | -2/+6 |
| | |||||
* | all: update license information | Felix Lange | 2016-11-09 | 1 | -0/+16 |
| | |||||
* | ethclient: changed TransactionByHash to only pass one argument to api method ↵ | Steven Roose | 2016-10-28 | 1 | -1/+1 |
| | | | | | (#3209) Fixes #3203 | ||||
* | ethclient: bugfix retrieving logs | Bas van Kervel | 2016-09-21 | 1 | -2/+2 |
| | |||||
* | ethclient: fix new block->header subscription endpoint | Péter Szilágyi | 2016-09-08 | 1 | -1/+1 |
| | |||||
* | ethereum, ethclient: add SyncProgress API endpoint | Péter Szilágyi | 2016-09-06 | 2 | -0/+34 |
| | |||||
* | ethclient: add initial implementation of the typed RPC client | Felix Lange | 2016-08-10 | 2 | -0/+399 |
ethclient implements the proposed Ethereum Go API. There are no tests at the moment, a suite that excercises all implementations of the API will be added later. |