From 76be4b8c0ac7407921ec60b981b06c75e0e32ecb Mon Sep 17 00:00:00 2001 From: selsta Date: Wed, 26 May 2021 03:39:35 +0200 Subject: [PATCH] main: set correct size for pruned blockchain --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index 14c98857..cdd8f2ab 100644 --- a/main.qml +++ b/main.qml @@ -92,7 +92,7 @@ ApplicationWindow { readonly property string localDaemonAddress : "localhost:" + getDefaultDaemonRpcPort(persistentSettings.nettype) property string currentDaemonAddress; property int disconnectedEpoch: 0 - property int estimatedBlockchainSize: 105 // GB + property int estimatedBlockchainSize: persistentSettings.pruneBlockchain ? 40 : 105 // GB property alias viewState: rootItem.state property string prevSplashText; property bool splashDisplayedBeforeButtonRequest;