检查whisper节点的私钥是否匹配给定的ID。
调用:
web3.shh.hasKeyPair(id, [callback])
参数:
id
:String - 密钥对ID,由shh.newKeyPair()和shh.addPrivateKey()返回callback
:Function - 可选的回调函数,其第一个参数为错误对象,第二个参数为结果返回值:
Boolean
- 如果节点密钥对匹配指定的id,则返回true,否则返回false
示例代码:
web3.shh.hasKeyPair('fe22b9ffc2387e18636e0a3d0c56b023264c16e78a2adcba1303cefc685e610f')
.then(console.log);
> true