aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/syndtr/goleveldb/leveldb
Commit message (Collapse)AuthorAgeFilesLines
* vendor: update leveldbMartin Holst Swende2018-11-2910-39/+47
|
* vendor, ethdb: resume write operation asap (#17144)gary rong2018-07-124-117/+243
| | | | | | * vendor: update leveldb * ethdb: remove useless warning log
* vendor, ethdb: print warning log if leveldb is performing compaction (#16766)gary rong2018-05-222-1/+76
| | | | | | | | * vendor: update leveldb package * ethdb: print warning log if db is performing compaction * ethdb: update annotation and log
* vendor: fix leveldb crash when bigger than 1 TiBtimothy2018-05-022-3/+7
|
* cmd, ethdb, vendor: integrate leveldb iostats (#16277)Kurkó Mihály2018-03-087-8/+75
| | | | | | | | | | | | * cmd, dashboard, ethdb, vendor: send iostats to dashboard * ethdb: change names * ethdb: handle parsing errors * ethdb: handle iostats syntax error * ethdb: r -> w
* vendor: update leveldb to 211f780 (poolfix) (#15988)Martin Holst Swende2018-01-292-6/+21
|
* vendor: pull in latest changes for goleveldb (#15090)Péter Szilágyi2017-09-057-8/+41
|
* vendor: update all dependencies except Azure SDKFelix Lange2017-01-113-25/+44
| | | | | The Azure SDK doesn't support Go 1.5 anymore. We can't upgrade it until Go 1.8 comes out.
* Godeps, vendor: convert dependency management to trash (#3198)Péter Szilágyi2016-10-2953-0/+14145
This commit converts the dependency management from Godeps to the vendor folder, also switching the tool from godep to trash. Since the upstream tool lacks a few features proposed via a few PRs, until those PRs are merged in (if), use github.com/karalabe/trash. You can update dependencies via trash --update. All dependencies have been updated to their latest version. Parts of the build system are reworked to drop old notions of Godeps and invocation of the go vet command so that it doesn't run against the vendor folder, as that will just blow up during vetting. The conversion drops OpenCL (and hence GPU mining support) from ethash and our codebase. The short reasoning is that there's noone to maintain and having opencl libs in our deps messes up builds as go install ./... tries to build them, failing with unsatisfied link errors for the C OpenCL deps. golang.org/x/net/context is not vendored in. We expect it to be fetched by the user (i.e. using go get). To keep ci.go builds reproducible the package is "vendored" in build/_vendor.