diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-10 10:04:50 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-10 10:46:58 +0100 |
commit | 17ca4fd40b163c450e9e23b50f66b50bf3a61a59 (patch) | |
tree | d12f80c39303ee640ebcaaadac2190ed444e333f /src | |
parent | 57ae367fe968d71e5230fd7b8a1acca4c7bdaf78 (diff) |
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.
Rebased-From: 70b8cb9
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 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. |