updating to new network health page

parent 21c373b5
...@@ -759,7 +759,7 @@ ApplicationWindow { ...@@ -759,7 +759,7 @@ ApplicationWindow {
Rectangle { Rectangle {
height: 55 height: 55
color: "transparent" color: "transparent"
visible:false visible: true
Text { Text {
text: "DEBUG" text: "DEBUG"
font.family: sourceSansPro.name font.family: sourceSansPro.name
......
...@@ -92,16 +92,17 @@ Rectangle { ...@@ -92,16 +92,17 @@ Rectangle {
// Check if it's mining and set it accordingly // Check if it's mining and set it accordingly
if (miningSliderValue > 0 && !eth.miner().mining()) { if (miningSliderValue > 0 && !eth.miner().mining()) {
// If the
eth.setGasPrice("10000000000000"); eth.setGasPrice("10000000000000");
eth.miner().start(); eth.miner().start();
} else if (miningSliderValue == 0 && eth.miner().mining()) { } else if (miningSliderValue == 0 && eth.miner().mining()) {
eth.miner().stop(); eth.miner().stop();
} else if (eth.miner().mining()) { } 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") { } else if (miningSliderValue == "undefined") {
webview.runJavaScript('Miner.mining = 0' ); webview.runJavaScript('Miner.mining = 0' );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment