aboutsummaryrefslogtreecommitdiffstats
path: root/les/request_test.go
Commit message (Collapse)AuthorAgeFilesLines
* all: import "context" instead of "golang.org/x/net/context"Felix Lange2017-03-231-2/+4
| | | | | | | | | | 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.
* les: implement request distributor, fix blocking issues (#3660)Felföldi Zsolt2017-03-231-0/+3
| | | | | * les: implement request distributor, fix blocking issues * core: moved header validation before chain mutex lock
* les: fixed selectPeer deadlock, improved request distributionZsolt Felfoldi2017-01-061-3/+4
| | | | les/flowcontrol: using proper types for relative and absolute times
* les: improved header fetcher and server statisticsZsolt Felfoldi2016-12-101-3/+4
|
* all: update license informationFelix Lange2016-11-091-0/+16
|
* core/types: remove header accessorsFelix Lange2016-11-091-2/+2
| | | | | | These accessors were introduced by light client changes, but the only method that is actually used is GetNumberU64. This commit replaces all uses of .GetNumberU64 with .Number.Uint64.
* les: light client protocol and APIZsolt Felfoldi2016-11-091-0/+94