mirror of https://github.com/status-im/op-geth.git
updating to new network health page
This commit is contained in:
parent
21c373b55d
commit
8c2940a98b
|
@ -759,7 +759,7 @@ ApplicationWindow {
|
|||
Rectangle {
|
||||
height: 55
|
||||
color: "transparent"
|
||||
visible:false
|
||||
visible: true
|
||||
Text {
|
||||
text: "DEBUG"
|
||||
font.family: sourceSansPro.name
|
||||
|
|
|
@ -92,16 +92,17 @@ Rectangle {
|
|||
|
||||
// Check if it's mining and set it accordingly
|
||||
if (miningSliderValue > 0 && !eth.miner().mining()) {
|
||||
// If the
|
||||
eth.setGasPrice("10000000000000");
|
||||
|
||||
eth.miner().start();
|
||||
} else if (miningSliderValue == 0 && eth.miner().mining()) {
|
||||
eth.miner().stop();
|
||||
} else if (eth.miner().mining()) {
|
||||
|
||||
webview.runJavaScript('console.log(localStorage.timeSpent); Miner.timeSpentMining++; Miner.hashrate = ' + eth.miner().hashRate() );
|
||||
|
||||
webview.runJavaScript('var miningData = MiningData.findOne(); MiningData.update(miningData._id, {$inc: {totalTimeSpent: 1}}); Miner.hashrate = ' + eth.miner().hashRate() );
|
||||
|
||||
//var miningData = MiningData.findOne(); MiningData.update(miningData._id, {$inc: {totalTimeSpent: 1}});
|
||||
|
||||
} else if (miningSliderValue == "undefined") {
|
||||
|
||||
webview.runJavaScript('Miner.mining = 0' );
|
||||
|
|
Loading…
Reference in New Issue