aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-07-06 11:42:37 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-07-06 11:42:37 -0400
commit59fcda43c6fc3c83828b44f8a1086422f351faa5 (patch)
treed5e145d2d01fec4ab51094b1b7068ddda93d0be3
parent6e87e2cb5b044dc4741f18575b8d38849a9db957 (diff)
parent76be4b8c0ac7407921ec60b981b06c75e0e32ecb (diff)
downloadmonzero-gui-59fcda43c6fc3c83828b44f8a1086422f351faa5.tar.gz
monzero-gui-59fcda43c6fc3c83828b44f8a1086422f351faa5.tar.xz
monzero-gui-59fcda43c6fc3c83828b44f8a1086422f351faa5.zip
Merge pull request #3505
76be4b8 main: set correct size for pruned blockchain (selsta)
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index 010c25f4..e12aa2b8 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;