检查指定的ID是否存有对称密钥。
调用:
web3.shh.hasSymKey(id, [callback])
参数:
id
:String - 密钥ID,由shh.newSymKey()、 shh.addSymKey()或shh.generateSymKeyFromPassword()返回callback
:Function - 可选的回调函数,其第一个参数为错误对象,第二个参数为返回结果返回值:
Boolean
- 成功时返回true,否则返回false
示例代码:
web3.shh.hasSymKey('f6dcf21ed6a17bd78d8c4c63195ab997b3b65ea683705501eae82d32667adc92')
.then(console.log);
> true