mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 11:52:05 +02:00
Merge pull request #2994
50c22ca
Mining: Indicate probability of finding a block in one day (glv2)
This commit is contained in:
commit
f631b75f0a
@ -251,7 +251,19 @@ Rectangle {
|
|||||||
|
|
||||||
function updateStatusText() {
|
function updateStatusText() {
|
||||||
if (appWindow.isMining) {
|
if (appWindow.isMining) {
|
||||||
statusText.text = qsTr("Mining at %1 H/s").arg(walletManager.miningHashRate()) + translationManager.emptyString;
|
var userHashRate = walletManager.miningHashRate();
|
||||||
|
if (userHashRate === 0) {
|
||||||
|
statusText.text = qsTr("Mining temporarily suspended.") + translationManager.emptyString;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
var blockTime = 120;
|
||||||
|
var blocksPerDay = 86400 / blockTime;
|
||||||
|
var globalHashRate = walletManager.networkDifficulty() / blockTime;
|
||||||
|
var probabilityFindNextBlock = userHashRate / globalHashRate;
|
||||||
|
var probabilityFindBlockDay = 1 - Math.pow(1 - probabilityFindNextBlock, blocksPerDay);
|
||||||
|
var chanceFindBlockDay = Math.round(1 / probabilityFindBlockDay);
|
||||||
|
statusText.text = qsTr("Mining at %1 H/s. It gives you a 1 in %2 daily chance of finding a block.").arg(userHashRate).arg(chanceFindBlockDay) + translationManager.emptyString;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
statusText.text = qsTr("Not mining") + translationManager.emptyString;
|
statusText.text = qsTr("Not mining") + translationManager.emptyString;
|
||||||
|
Loading…
Reference in New Issue
Block a user