From 17ca4fd40b163c450e9e23b50f66b50bf3a61a59 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Mon, 10 Mar 2014 10:04:50 +0100 Subject: [PATCH] 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 --- src/qt/intro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.