From e6ac95a858478f8b36b12e8589598041817649d9 Mon Sep 17 00:00:00 2001 From: TomZ Date: Wed, 2 Mar 2016 13:25:31 +0000 Subject: [PATCH] Turn off obfuscation --- src/txdb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txdb.cpp b/src/txdb.cpp index 12a5fdbff03..11fd209b7f3 100644 --- a/src/txdb.cpp +++ b/src/txdb.cpp @@ -30,7 +30,7 @@ static const char DB_LAST_BLOCK = 'l'; static const char DB_FORK_ACTIVATION = 'a'; -CCoinsViewDB::CCoinsViewDB(size_t nCacheSize, bool fMemory, bool fWipe) : db(GetDataDir() / "chainstate", nCacheSize, fMemory, fWipe, true) +CCoinsViewDB::CCoinsViewDB(size_t nCacheSize, bool fMemory, bool fWipe) : db(GetDataDir() / "chainstate", nCacheSize, fMemory, fWipe, false) { }