mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-02-16 01:08:31 +00:00
11 lines
172 B
JavaScript
11 lines
172 B
JavaScript
|
|
setInterval(function() {
|
|
if(web3.eth.pendingTransactions().length > 0 && !web3.eth.mining) {
|
|
admin.miner.start();
|
|
}
|
|
else {
|
|
admin.miner.stop();
|
|
}
|
|
}, 1000)
|
|
|