From 0892db00218c1d3d6822e1bca0ba7001454dc320 Mon Sep 17 00:00:00 2001 From: celbalrai <80897309+celbalrai@users.noreply.github.com> Date: Tue, 22 Jun 2021 15:44:39 +0200 Subject: [PATCH] Update mainnet data - set chain size and year of first block --- src/qt/intro.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 763463738e9fcb..6551d692c073cb 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -24,7 +24,7 @@ static const uint64_t GB_BYTES = 1000000000LL; /* Minimum free space (in GB) needed for data directory */ -static const uint64_t BLOCK_CHAIN_SIZE = 35; +static const uint64_t BLOCK_CHAIN_SIZE = 7; /* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */ static const uint64_t CHAIN_STATE_SIZE = 1; /* Total required space (in GB) depending on user choice (prune, not prune) */ @@ -128,7 +128,7 @@ Intro::Intro(QWidget *parent) : ui->lblExplanation1->setText(ui->lblExplanation1->text() .arg(tr(PACKAGE_NAME)) .arg(BLOCK_CHAIN_SIZE) - .arg(2014) + .arg(2018) .arg("Wagerr") ); ui->lblExplanation2->setText(ui->lblExplanation2->text().arg(tr(PACKAGE_NAME)));