diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-03-10 10:04:50 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-03-10 10:06:15 +0100 |
| commit | 70b8cb9ce895d099d5dadf4a49c318440e7cf486 (patch) | |
| tree | abbe869cbd49a54c6fd41c481e07a13017d463a9 /src/qt/intro.cpp | |
| parent | Merge pull request #3685 (diff) | |
| download | discoin-70b8cb9ce895d099d5dadf4a49c318440e7cf486.tar.xz discoin-70b8cb9ce895d099d5dadf4a49c318440e7cf486.zip | |
qt: Adjust BLOCK_CHAIN_SIZE to 20GB
This increases the space requirement for selecting a data directory in
the UI.
As suggested by @bardiharborow, fixes #3830.
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 fc1258827..42833a8a3 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -14,7 +14,7 @@ /* Minimum free space (in bytes) needed for data directory */ static const uint64_t GB_BYTES = 1000000000LL; -static const uint64_t BLOCK_CHAIN_SIZE = 10LL * GB_BYTES; +static const uint64_t BLOCK_CHAIN_SIZE = 20LL * GB_BYTES; /* Check free space asynchronously to prevent hanging the UI thread. |