- Jan 03, 2018
-
-
Péter Szilágyi authored
-
- Sep 15, 2017
-
-
Kyuntae Ethan Kim authored
-
- Mar 22, 2017
-
-
Felix Lange authored
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.
-
- Jan 06, 2017
-
-
Felix Lange authored
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.
-
- Dec 05, 2016
-
-
Felix Lange authored
-
Felix Lange authored
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.
-
- Sep 06, 2016
-
-
Péter Szilágyi authored
-
- Aug 05, 2016
-
-
Felix Lange authored
-