web3.shh.deleteKeyPair
删除指定的键。
调用:
web3.shh.deleteKeyPair(id, [callback])
参数:
id
:String - 密钥对ID,由shh.newKeyPair()或shh.addPrivateKey()返回callback
:Function - 可选的回调函数,其第一个参数为错误对象,第二个参数为返回结果
返回值:
Boolean
- 成功返回true,失败返回false
示例代码:
web3.shh.deleteKeyPair('3e22b9ffc2387e18636e0a3d0c56b023264c16e78a2adcba1303cefc685e610f')
.then(console.log);
> true