mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-26 21:51:06 +00:00
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
|
|
setInterval(function() {
|
|
|
|
var minimalAmount = (web3.eth.getBalance(web3.eth.coinbase) >= 1500000000000000000);
|
|
if(!web3.eth.mining && (!minimalAmount || web3.eth.pendingTransactions().length > 0)) {
|
|
admin.miner.start();
|
|
}
|
|
else {
|
|
admin.miner.stop();
|
|
}
|
|
}, 1000)
|
|
|