Skip to content

Commit

Permalink
GUI: Adjust blockchain and chainstate sizes in Intro
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr authored and instagibbs committed Apr 10, 2019
1 parent d522775 commit 6802658
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qt/intro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 6802658

Please sign in to comment.