diff options
| author | Anthony Chen <[email protected]> | 2021-02-05 21:05:35 -0500 |
|---|---|---|
| committer | cg <[email protected]> | 2021-02-05 21:57:47 -0500 |
| commit | 3b477bcd53f5559790706449b669f8d38cb03022 (patch) | |
| tree | 2f6ec84de2bf1bcc793515e3023168c3bdb97ae6 /src/qt/intro.cpp | |
| parent | Set next release version to 1.14.2 (diff) | |
| download | discoin-3b477bcd53f5559790706449b669f8d38cb03022.tar.xz discoin-3b477bcd53f5559790706449b669f8d38cb03022.zip | |
fix minimum required space for data directory
Diffstat (limited to 'src/qt/intro.cpp')
| -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 6b5ac47f2..3d4ca04f2 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 = 120; +static const uint64_t BLOCK_CHAIN_SIZE = 50; /* 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) */ |