Skip to content

Commit

Permalink
fix: BLOCK_CHAIN_SIZE & CHAIN_STATE_SIZE (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
decryp2kanon committed Mar 2, 2020
1 parent 6920919 commit 11cc2ef
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 @@ -22,9 +22,9 @@

static const uint64_t GB_BYTES = 1000000000LL;
/* Minimum free space (in GB) needed for data directory */
static const uint64_t BLOCK_CHAIN_SIZE = 3;
static const uint64_t BLOCK_CHAIN_SIZE = 4; // inaccurate size
/* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */
static const uint64_t CHAIN_STATE_SIZE = 0.24;
static const uint64_t CHAIN_STATE_SIZE = 1; // inaccurate size // should INT
/* Total required space (in GB) depending on user choice (prune, not prune) */
static uint64_t requiredSpace;

Expand Down

0 comments on commit 11cc2ef

Please sign in to comment.