From 765982c7a176fc545777c7f3c880493734bf1464 Mon Sep 17 00:00:00 2001 From: selsta Date: Tue, 20 Jan 2026 17:51:10 +0100 Subject: [PATCH] main: update blockchain size estimate --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index f856e419..4646a928 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 ? 100 : 225 // GB + property int estimatedBlockchainSize: persistentSettings.pruneBlockchain ? 110 : 270 // GB property alias viewState: rootItem.state property string prevSplashText; property bool splashDisplayedBeforeButtonRequest;