| 9 | import {getKeyringAttr, setKeyringAttr} from './keyring'; |
| 10 | |
| 11 | export default class KeyStoreLocal extends KeyStoreBase { |
| 12 | async load() { |
| 13 | const pubArmored = await mvelo.storage.get(`mvelo.keyring.${this.id}.publicKeys`); |
| 14 | await this.loadKeys(pubArmored, this.publicKeys); |
nothing calls this directly
no outgoing calls
no test coverage detected