diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2021-07-06 11:42:37 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2021-07-06 11:42:37 -0400 |
| commit | 59fcda43c6fc3c83828b44f8a1086422f351faa5 (patch) | |
| tree | d5e145d2d01fec4ab51094b1b7068ddda93d0be3 | |
| parent | 6e87e2cb5b044dc4741f18575b8d38849a9db957 (diff) | |
| parent | 76be4b8c0ac7407921ec60b981b06c75e0e32ecb (diff) | |
| download | monzero-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.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |
