aboutsummaryrefslogtreecommitdiff
path: root/src/qt/intro.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-03-10 10:04:50 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2014-03-10 10:06:15 +0100
commit70b8cb9ce895d099d5dadf4a49c318440e7cf486 (patch)
treeabbe869cbd49a54c6fd41c481e07a13017d463a9 /src/qt/intro.cpp
parent218be959031b17b576b2bed44e771f76b1a147de (diff)
downloadbitcoin-70b8cb9ce895d099d5dadf4a49c318440e7cf486.tar.xz
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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp
index fc1258827e..42833a8a33 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.