updating to new network health page
This commit is contained in:
@ -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 {
|
|||||||
|
|
||||||
// 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' );
|
||||||
|
Reference in New Issue
Block a user