diff options
| author | Patrick Lodder <[email protected]> | 2021-02-07 23:21:03 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-07 23:21:03 +0100 |
| commit | 27488d8f573a975dd8f967b4140ed7756dc4c396 (patch) | |
| tree | 87dec2849197464d10d8332c298773912653c733 /src | |
| parent | Merge pull request #1669 from carsenk/master (diff) | |
| parent | Update src/qt/intro.cpp (diff) | |
| download | discoin-27488d8f573a975dd8f967b4140ed7756dc4c396.tar.xz discoin-27488d8f573a975dd8f967b4140ed7756dc4c396.zip | |
Merge pull request #1706 from slightlyskepticalpotat/master
fix minimum required space for data directory
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 6b5ac47f2..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 = 120; +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) */ |