From 088930facc9e670f7c9cf9ddcab46efee6a3dd90 Mon Sep 17 00:00:00 2001 From: Gareth Date: Wed, 8 Mar 2017 21:29:08 +0800 Subject: [PATCH] Problem: misleading information about LMDB storage Solution: updated the comments to reflect the current situation in terms of LMDB implementation and no longer recommend 'memory' for blockchain storage in production use. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 34c745cd..8fbceeeb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -228,8 +228,8 @@ if(STATIC) endif() endif() -# default database: -# should be lmdb for testing, memory for production still +# Set default blockchain storage location: +# memory was the default in Cryptonote before Monero implimented LMDB, it still works but is unneccessary. # set(DATABASE memory) set(DATABASE lmdb)