aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2026-01-20 17:51:10 +0100
committerselsta <selsta@sent.at>2026-01-20 17:51:10 +0100
commit765982c7a176fc545777c7f3c880493734bf1464 (patch)
tree81c0264c29a9733cddf6a4242d5168c31ea55c9f /main.qml
parent172e3466125964713d171434f4ac0e81eb126707 (diff)
downloadmonzero-gui-765982c7a176fc545777c7f3c880493734bf1464.tar.gz
monzero-gui-765982c7a176fc545777c7f3c880493734bf1464.tar.xz
monzero-gui-765982c7a176fc545777c7f3c880493734bf1464.zip
main: update blockchain size estimate
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
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;