GUI: Adjust blockchain and chainstate sizes in Intro

Fixes: https://github.com/greenaddress/elements/issues/1
This commit is contained in:
Luke Dashjr 2019-02-23 03:00:11 +00:00 committed by Gregory Sanders
parent d522775b80
commit 680265806b

View file

@ -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;