From a56d4d0f4bc577e69207ce6a0a231581dd8e4e18 Mon Sep 17 00:00:00 2001 From: Collin Bartlam Date: Fri, 9 May 2025 01:20:47 -0400 Subject: [PATCH] main: Update blockchain size --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index 98fb43c0..ffbf014e 100644 --- a/main.qml +++ b/main.qml @@ -94,7 +94,7 @@ ApplicationWindow { readonly property string localDaemonAddress : "localhost:" + getDefaultDaemonRpcPort(persistentSettings.nettype) property string currentDaemonAddress; property int disconnectedEpoch: 0 - property int estimatedBlockchainSize: persistentSettings.pruneBlockchain ? 55 : 150 // GB + property int estimatedBlockchainSize: persistentSettings.pruneBlockchain ? 100 : 225 // GB property alias viewState: rootItem.state property string prevSplashText; property bool splashDisplayedBeforeButtonRequest;