Update to latest version of goleveldb.

This commit is contained in:
Andrey Smirnov
2016-03-01 12:53:25 +03:00
parent 18d04c7977
commit 067d197dac
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ func OpenDB(path string) (Storage, error) {
// RecoverDB recovers LevelDB database from corruption
func RecoverDB(path string) error {
stor, err := storage.OpenFile(path)
stor, err := storage.OpenFile(path, false)
if err != nil {
return err
}