From 680265806b3cbe22505fc0cc6306edac222b89de Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Sat, 23 Feb 2019 03:00:11 +0000 Subject: [PATCH] GUI: Adjust blockchain and chainstate sizes in Intro Fixes: https://github.com/greenaddress/elements/issues/1 --- src/qt/intro.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index b19cc17a4d..94885d59da 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -23,9 +23,9 @@ static const uint64_t GB_BYTES = 1000000000LL; /* Minimum free space (in GB) needed for data directory */ -constexpr uint64_t BLOCK_CHAIN_SIZE = 220; +constexpr uint64_t BLOCK_CHAIN_SIZE = 1; /* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */ -static const uint64_t CHAIN_STATE_SIZE = 3; +static const uint64_t CHAIN_STATE_SIZE = 0; /* Total required space (in GB) depending on user choice (prune, not prune) */ static uint64_t requiredSpace;