web3.eth.isMining
code:isMining.js
web3.eth.isMining(
callback
)
ノードがマイニングしているか否かを確認します。
戻り値
Boolean
を返す
Promise
です。
もしノードがマイニングしていれば
true
を返します。
それ以外の場合は、
false
を返します。
サンプル
code:example.js
web3.eth.isMining()
.then(console.log);
true
原文
https://web3js.readthedocs.io/en/1.0/web3-eth.html#ismining