From 65cff46af451cc203ef4bf587d7bdeb3b815fb67 Mon Sep 17 00:00:00 2001 From: Jannis Froese Date: Sat, 29 Mar 2014 21:29:51 +0100 Subject: [PATCH] decrease minimum blockchain size to current dogecoin level --- 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 9b4012f2d..14863b205 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 = 20LL * GB_BYTES; +static const uint64_t BLOCK_CHAIN_SIZE = 5LL * GB_BYTES; /* Check free space asynchronously to prevent hanging the UI thread.