aboutsummaryrefslogtreecommitdiffstats
path: root/interfaces.go
Commit message (Collapse)AuthorAgeFilesLines
* Change import go github.com/dexon-foundation/dexonWei-Ning Huang2019-06-121-2/+2
|
* ethereum: fix typo in interfaces.go (#18266)YOSHIDA Masanori2018-12-101-1/+1
| | | | | | * Fix typo in interfaces.go * Update interfaces.go
* eth/filters, ethereum: EIP-234 add blockHash param for eth_getLogsDomino Valdano2018-07-121-0/+1
|
* ethereum: fix a typo in FilterQuery{} (#16827)Mohanson2018-05-291-1/+1
| | | Fix a spelling mistake in comment
* all: switch gas limits from big.Int to uint64Péter Szilágyi2018-01-031-2/+2
|
* ethereum: fix typos in interfaces.go (#15149)Kyuntae Ethan Kim2017-09-151-2/+2
|
* all: import "context" instead of "golang.org/x/net/context"Felix Lange2017-03-231-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/typesFelix Lange2017-01-061-3/+2
| | | | | | | | 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.
* ethereum: document use of Removed field for SubscribeFilterLogsFelix Lange2016-12-051-0/+3
|
* ethclient, ethereum: add NotFound, split transactions out of ChainReaderFelix Lange2016-12-051-6/+30
| | | | | | | | | 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.
* ethereum, ethclient: add SyncProgress API endpointPéter Szilágyi2016-09-061-0/+16
|
* ethereum: add new Go API interfacesFelix Lange2016-08-051-0/+168