View on GitHub

web3js-cn

web3.net.peerCount

属性是只读的,返回连接节点已连上的其它以太坊节点的数量。

同步调用:

web3.net.peerCount

异步调用:

web3.net.getPeerCount(callback(error, result){ ... })

返回值:

示例:

var peerCount = web3.net.peerCount;
console.log("Peer count: " + peerCount); 
//Peer count: 0

教程推荐: