(keyringId, keyStore)
| 12 | |
| 13 | export default class KeyringBase { |
| 14 | constructor(keyringId, keyStore) { |
| 15 | this.id = keyringId; |
| 16 | this.keystore = keyStore; |
| 17 | } |
| 18 | |
| 19 | async getKeys() { |
| 20 | const keys = []; |
nothing calls this directly
no outgoing calls
no test coverage detected