vendor: update leveldb to 211f780 (poolfix) (#15988)

This commit is contained in:
Martin Holst Swende
2018-01-29 15:17:59 +01:00
committed by Péter Szilágyi
parent dd7a715d73
commit 59a852e418
5 changed files with 27 additions and 22 deletions

View File

@@ -10,13 +10,15 @@ Installation
Requirements
-----------
* Need at least `go1.4` or newer.
* Need at least `go1.5` or newer.
Usage
-----------
Create or open a database:
```go
// The returned DB instance is safe for concurrent use. Which mean that all
// DB's methods may be called concurrently from multiple goroutine.
db, err := leveldb.OpenFile("path/to/db", nil)
...
defer db.Close()