fix miner

This commit is contained in:
Jonathan Rainville 2018-06-28 09:17:19 -04:00
parent aea3671bd8
commit f29760e051
2 changed files with 47 additions and 22 deletions

View File

@ -20,6 +20,7 @@ class GethMiner {
this.config = {}; this.config = {};
self.interval = null; self.interval = null;
self.callback = null; self.callback = null;
self.started = null;
self.commandQueue = async.queue((task, callback) => { self.commandQueue = async.queue((task, callback) => {
self.callback = callback; self.callback = callback;
@ -67,10 +68,11 @@ class GethMiner {
}); });
if (this.config.mine_normally) { if (this.config.mine_normally) {
return this.sendCommand(minerStart); this.startMiner();
return;
} }
self.sendCommand(minerStop, () => { self.stopMiner(() => {
self.fundAccount(function (err) { self.fundAccount(function (err) {
if (err) { if (err) {
console.error(err); console.error(err);
@ -89,11 +91,34 @@ class GethMiner {
params = []; params = [];
} }
if (!callback) { if (!callback) {
callback = function() {}; callback = function () {
};
} }
this.commandQueue.push({method, params: params || []}, callback); this.commandQueue.push({method, params: params || []}, callback);
} }
startMiner(callback) {
if (this.started) {
if (callback) {
callback();
}
return;
}
this.started = true;
this.sendCommand(minerStart, callback);
}
stopMiner(callback) {
if (!this.started) {
if (callback) {
callback();
}
return;
}
this.started = false;
this.sendCommand(minerStop, callback);
}
getCoinbase(callback) { getCoinbase(callback) {
if (this.coinbase) { if (this.coinbase) {
return callback(null, this.coinbase); return callback(null, this.coinbase);
@ -120,17 +145,16 @@ class GethMiner {
if (err) { if (err) {
return callback(err); return callback(err);
} }
callback(null, result >= self.config.initial_ether); callback(null, parseInt(result, 16) >= self.config.initial_ether);
}); });
}); });
} }
watchBlocks(filterCommand, callback) { watchBlocks(filterCommand, callback, delay) {
const self = this; const self = this;
self.sendCommand(filterCommand, (err, filterId) => { self.sendCommand(filterCommand, (err, filterId) => {
if (err) { if (err) {
callback(err); return callback(err);
return;
} }
self.interval = setInterval(() => { self.interval = setInterval(() => {
self.sendCommand(getChanges, [filterId], (err, changes) => { self.sendCommand(getChanges, [filterId], (err, changes) => {
@ -143,13 +167,13 @@ class GethMiner {
} }
callback(null, changes); callback(null, changes);
}); });
}, 1000); }, delay || 1000);
}); });
} }
mineUntilFunded(callback) { mineUntilFunded(callback) {
const self = this; const self = this;
this.sendCommand(minerStart); this.startMiner();
self.watchBlocks(newBlockFilter, (err) => { self.watchBlocks(newBlockFilter, (err) => {
if (err) { if (err) {
console.error(err); console.error(err);
@ -158,7 +182,7 @@ class GethMiner {
self.accountFunded((err, funded) => { self.accountFunded((err, funded) => {
if (funded) { if (funded) {
clearTimeout(self.interval); clearTimeout(self.interval);
self.sendCommand(minerStop); self.stopMiner();
callback(); callback();
} }
}); });
@ -198,7 +222,7 @@ class GethMiner {
let timeout_set = false; let timeout_set = false;
let next_block_in_ms; let next_block_in_ms;
self.sendCommand(minerStart); self.startMiner();
self.watchBlocks(newBlockFilter, (err) => { self.watchBlocks(newBlockFilter, (err) => {
if (err) { if (err) {
console.error(err); console.error(err);
@ -234,7 +258,7 @@ class GethMiner {
} else { } else {
next_block_in_ms = (self.config.interval_ms - ms_since_block); next_block_in_ms = (self.config.interval_ms - ms_since_block);
} }
self.sendCommand(minerStop); self.stopMiner();
console.log("== Looking for next block in " + next_block_in_ms + "ms"); console.log("== Looking for next block in " + next_block_in_ms + "ms");
next(); next();
}, },
@ -242,8 +266,7 @@ class GethMiner {
setTimeout(function () { setTimeout(function () {
console.log("== Looking for next block"); console.log("== Looking for next block");
timeout_set = false; timeout_set = false;
//miner_obj.start(config.threads); self.startMiner();
self.sendCommand(minerStart);
next(); next();
}, next_block_in_ms); }, next_block_in_ms);
} }
@ -260,6 +283,7 @@ class GethMiner {
start_transaction_mining() { start_transaction_mining() {
const self = this; const self = this;
const pendingTrasactionsMessage = "== Pending transactions! Looking for next block...";
self.watchBlocks(pendingBlockFilter, (err) => { self.watchBlocks(pendingBlockFilter, (err) => {
if (err) { if (err) {
console.error(err); console.error(err);
@ -268,11 +292,10 @@ class GethMiner {
self.sendCommand(getHashRate, (err, result) => { self.sendCommand(getHashRate, (err, result) => {
if (result > 0) return; if (result > 0) return;
console.log("== Pending transactions! Looking for next block..."); console.log(pendingTrasactionsMessage);
self.sendCommand(minerStart); self.startMiner();
}); });
}); }, 2000);
if (self.config.mine_periodically) return; if (self.config.mine_periodically) return;
@ -288,10 +311,13 @@ class GethMiner {
} }
if (!count) { if (!count) {
console.log("== No transactions left. Stopping miner..."); console.log("== No transactions left. Stopping miner...");
self.sendCommand(minerStop); self.stopMiner();
} else {
console.log(pendingTrasactionsMessage);
self.startMiner();
} }
}); });
}); }, 2000);
} }
} }

View File

@ -68,8 +68,7 @@ exports.serve = function(ipc, host, port, ws){
}); });
proxy.on('error', function () { proxy.on('error', function () {
console.log(__("Error forwarding requests to blockchain/simulator")); console.error(__("Error forwarding requests to blockchain/simulator"));
process.exit();
}); });
proxy.on('proxyRes', (proxyRes) => { proxy.on('proxyRes', (proxyRes) => {