Browse Source

Probably fix for BadRoot bug.

cl-refactor
Gav Wood 10 years ago
parent
commit
9cd64dcfe5
  1. 1
      libethereum/State.cpp

1
libethereum/State.cpp

@ -62,6 +62,7 @@ OverlayDB State::openDB(std::string _path, WithExisting _we)
boost::filesystem::remove_all(_path + "/state");
ldb::Options o;
o.max_open_files = 256;
o.create_if_missing = true;
ldb::DB* db = nullptr;
ldb::DB::Open(o, _path + "/state", &db);

Loading…
Cancel
Save