aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2020-05-07 13:40:43 +0000
committerxiphon <xiphon@protonmail.com>2020-05-07 13:40:43 +0000
commit37a8bcb525fc10248f12aa9013f785331e76228f (patch)
treeec823cdf35fe5c299f1e433793573388fe5b5ea9
parent4141832a4d948d7a85cf53c35c167b88a2441219 (diff)
downloadmonzero-gui-37a8bcb525fc10248f12aa9013f785331e76228f.tar.gz
monzero-gui-37a8bcb525fc10248f12aa9013f785331e76228f.tar.xz
monzero-gui-37a8bcb525fc10248f12aa9013f785331e76228f.zip
SimpleMode: use connection timer 'running' prop, fix daemon restart
-rw-r--r--main.qml30
1 files changed, 15 insertions, 15 deletions
diff --git a/main.qml b/main.qml
index c8f5f67a..07099b66 100644
--- a/main.qml
+++ b/main.qml
@@ -67,6 +67,7 @@ ApplicationWindow {
property bool walletSynced: false
property int maxWindowHeight: (isAndroid || isIOS)? screenHeight : (screenHeight < 900)? 720 : 800;
property bool daemonRunning: !persistentSettings.useRemoteNode && !disconnected
+ property bool daemonStartStopInProgress: false
property alias toolTip: toolTip
property string walletName
property bool viewOnly: false
@@ -251,7 +252,6 @@ ApplicationWindow {
// enable timers
userInActivityTimer.running = true;
- simpleModeConnectionTimer.running = true;
// wallet already opened with wizard, we just need to initialize it
var wallet_path = persistentSettings.wallet_path;
@@ -471,9 +471,6 @@ ApplicationWindow {
middlePanel.updateStatus();
leftPanel.networkStatus.connected = status
- // Update fee multiplier dropdown on transfer page
- middlePanel.transferView.updatePriorityDropdown();
-
// If wallet isnt connected, advanced wallet mode and no daemon is running - Ask
if (appWindow.walletMode >= 2 && !persistentSettings.useRemoteNode && !walletInitialized && disconnected) {
daemonManager.runningAsync(persistentSettings.nettype, function(running) {
@@ -661,12 +658,11 @@ ApplicationWindow {
}
function startDaemon(flags){
+ daemonStartStopInProgress = true;
+
// Pause refresh while starting daemon
currentWallet.pauseRefresh();
- // Pause simplemode connection timer
- simpleModeConnectionTimer.stop();
-
appWindow.showProcessingSplash(qsTr("Waiting for daemon to start..."))
const noSync = appWindow.walletMode === 0;
const bootstrapNodeAddress = persistentSettings.walletMode < 2 ? "auto" : persistentSettings.bootstrapNodeAddress
@@ -674,8 +670,10 @@ ApplicationWindow {
}
function stopDaemon(callback){
+ daemonStartStopInProgress = true;
appWindow.showProcessingSplash(qsTr("Waiting for daemon to stop..."))
daemonManager.stopAsync(persistentSettings.nettype, function(result) {
+ daemonStartStopInProgress = false;
hideProcessingSplash();
callback(result);
});
@@ -683,13 +681,13 @@ ApplicationWindow {
function onDaemonStarted(){
console.log("daemon started");
+ daemonStartStopInProgress = false;
hideProcessingSplash();
currentWallet.connected(true);
// resume refresh
currentWallet.startRefresh();
// resume simplemode connection timer
appWindow.disconnectedEpoch = Utils.epoch();
- simpleModeConnectionTimer.start();
}
function onDaemonStopped(){
currentWallet.connected(true);
@@ -697,6 +695,7 @@ ApplicationWindow {
function onDaemonStartFailure(error) {
console.log("daemon start failed");
+ daemonStartStopInProgress = false;
hideProcessingSplash();
// resume refresh
currentWallet.startRefresh();
@@ -1106,7 +1105,6 @@ ApplicationWindow {
middlePanel.receiveView.clearFields();
// disable timers
userInActivityTimer.running = false;
- simpleModeConnectionTimer.running = false;
});
}
@@ -1854,9 +1852,6 @@ ApplicationWindow {
}
function checkSimpleModeConnection(){
- // auto-connection mechanism for simple mode
- if(appWindow.walletMode >= 2) return;
-
const disconnectedTimeoutSec = 30;
const firstCheckDelaySec = 2;
@@ -1873,15 +1868,20 @@ ApplicationWindow {
}
if (appWindow.daemonRunning) {
- appWindow.stopDaemon();
+ appWindow.stopDaemon(function() {
+ appWindow.startDaemon("")
+ });
+ } else {
+ appWindow.startDaemon("");
}
- appWindow.startDaemon("");
}
Timer {
// Simple mode connection check timer
id: simpleModeConnectionTimer
- interval: 2000; running: false; repeat: true
+ interval: 2000
+ running: appWindow.walletMode < 2 && currentWallet != undefined && !daemonStartStopInProgress
+ repeat: true
onTriggered: appWindow.checkSimpleModeConnection()
}