From 8689014eda5f16b2163994ab929ed063f1e93612 Mon Sep 17 00:00:00 2001 From: Riccardo Spagni Date: Sat, 12 Mar 2016 21:09:44 +0200 Subject: switch default utilities DB to lmdb, update checkpoints.dat --- src/blockchain_utilities/blockchain_utilities.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/blockchain_utilities/blockchain_utilities.h') diff --git a/src/blockchain_utilities/blockchain_utilities.h b/src/blockchain_utilities/blockchain_utilities.h index 52c4fa0a8..51c17a9b6 100644 --- a/src/blockchain_utilities/blockchain_utilities.h +++ b/src/blockchain_utilities/blockchain_utilities.h @@ -33,12 +33,15 @@ // CONFIG: choose one of the three #define's // -// DB_MEMORY is a sensible default for users migrating to LMDB, as it allows +// DB_MEMORY was a sensible default for users migrating to LMDB, as it allowed // the exporter to use the in-memory blockchain while the other binaries // work with LMDB, without recompiling anything. +// +// Now that the majority of users are on 0.9.2, and the converter has largely +// become a generalised database tool, the default has changed to DB_LMDB. // -#define SOURCE_DB DB_MEMORY -//#define SOURCE_DB DB_LMDB +// #define SOURCE_DB DB_MEMORY +#define SOURCE_DB DB_LMDB // to use global compile-time setting (DB_MEMORY or DB_LMDB): // #define SOURCE_DB BLOCKCHAIN_DB -- cgit v1.2.3