mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 11:52:05 +02:00
minng warning label when daemon not syncd
This commit is contained in:
parent
b4353a31ac
commit
adb47adf9b
@ -69,6 +69,14 @@ Rectangle {
|
|||||||
visible: !walletManager.isDaemonLocal(appWindow.currentDaemonAddress)
|
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 {
|
Text {
|
||||||
id: soloMainLabel
|
id: soloMainLabel
|
||||||
text: qsTr("Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.<br> <br>Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!") + translationManager.emptyString
|
text: qsTr("Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.<br> <br>Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!") + translationManager.emptyString
|
||||||
|
Loading…
Reference in New Issue
Block a user