aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-05-11 16:59:06 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-05-11 16:59:06 -0500
commit4954491273dbda6b363ef5504565a9121afef75e (patch)
tree6dbb0f960d6dc515f6fb0e4fdd744892bf3d710b
parent4c2640d4b3519cede86f4392c4e3a29d6ee5a377 (diff)
parentadb47adf9b12e3e2686593be452cec2ca0c9de5d (diff)
downloadmonzero-gui-4954491273dbda6b363ef5504565a9121afef75e.tar.gz
monzero-gui-4954491273dbda6b363ef5504565a9121afef75e.tar.xz
monzero-gui-4954491273dbda6b363ef5504565a9121afef75e.zip
Merge pull request #1375
adb47ad minng warning label when daemon not syncd
-rw-r--r--pages/Mining.qml8
1 files changed, 8 insertions, 0 deletions
diff --git a/pages/Mining.qml b/pages/Mining.qml
index f27a2b19..0b67028c 100644
--- a/pages/Mining.qml
+++ b/pages/Mining.qml
@@ -68,6 +68,14 @@ Rectangle {
text: qsTr("(only available for local daemons)")
visible: !walletManager.isDaemonLocal(appWindow.currentDaemonAddress)
}
+
+ Label {
+ id: soloSyncedLabel
+ fontSize: 18
+ color: "#D02020"
+ text: qsTr("Your daemon must be synchronized before you can start mining")
+ visible: walletManager.isDaemonLocal(appWindow.currentDaemonAddress) && !appWindow.daemonSynced
+ }
Text {
id: soloMainLabel