From ca779901895d71620eb7a054a06f19bff6c65904 Mon Sep 17 00:00:00 2001 From: Samad Sajanlal Date: Wed, 23 May 2018 18:20:19 -0500 Subject: [PATCH] transaction indexing by default --- src/validation.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/validation.h b/src/validation.h index 9e719a0..8b4454d 100755 --- a/src/validation.h +++ b/src/validation.h @@ -129,7 +129,8 @@ static const int64_t MAX_FEE_ESTIMATION_TIP_AGE = 3 * 60 * 60; /** Default for -permitbaremultisig */ static const bool DEFAULT_PERMIT_BAREMULTISIG = true; static const bool DEFAULT_CHECKPOINTS_ENABLED = true; -static const bool DEFAULT_TXINDEX = false; +/** Make -txindex=1 default */ +static const bool DEFAULT_TXINDEX = true; static const unsigned int DEFAULT_BANSCORE_THRESHOLD = 100; /** Default for -persistmempool */ static const bool DEFAULT_PERSIST_MEMPOOL = true;