diff options
| author | Anthony Chen <[email protected]> | 2021-02-06 13:35:02 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-06 13:35:02 -0500 |
| commit | 676c24b64c3c76b502f0a27457793a3c1626a4c3 (patch) | |
| tree | 1f152273a1ac0b32719f3381e75d8f55699c056d /src | |
| parent | fix minimum required space for data directory (diff) | |
| download | discoin-676c24b64c3c76b502f0a27457793a3c1626a4c3.tar.xz discoin-676c24b64c3c76b502f0a27457793a3c1626a4c3.zip | |
Update src/qt/intro.cpp
Co-authored-by: Ross Nicoll <[email protected]>
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/intro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 3d4ca04f2..5eef52637 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -23,7 +23,7 @@ static const uint64_t GB_BYTES = 1000000000LL; /* Minimum free space (in GB) needed for data directory */ -static const uint64_t BLOCK_CHAIN_SIZE = 50; +static const uint64_t BLOCK_CHAIN_SIZE = 55; /* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */ static const uint64_t CHAIN_STATE_SIZE = 2; /* Total required space (in GB) depending on user choice (prune, not prune) */ |