LevelDB fixes.

This commit is contained in:
JoelKatz
2013-04-25 18:44:02 -07:00
parent 169b6c9057
commit d8d87ff207
2 changed files with 9 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
#include "Application.h"
#ifdef USE_LEVELDB
#include "leveldb/cache.h"
#endif
#include "AcceptedLedger.h"
#include "Config.h"
#include "PeerDoor.h"
@@ -162,6 +167,7 @@ void Application::setup()
#ifdef USE_LEVELDB
leveldb::Options options;
options.create_if_missing = true;
options.block_cache = leveldb::NewLRUCache(theConfig.getSize(siHashNodeDBCache) * 1024 * 1024);
leveldb::Status status = leveldb::DB::Open(options, (theConfig.DATA_DIR / "hashnode").string(), &mHashNodeDB);
if (!status.ok() || !mHashNodeDB)
{