({keyringId})
| 40 | } |
| 41 | |
| 42 | async createKeyring({keyringId}) { |
| 43 | const keyring = await createKeyring(keyringId); |
| 44 | await keyring.sync.activate(); |
| 45 | setActiveKeyringId(keyringId); |
| 46 | return {}; |
| 47 | } |
| 48 | |
| 49 | async queryValidKey({keyringId, recipients}) { |
| 50 | const keyMap = await getKeyByAddress(keyringId, recipients); |
nothing calls this directly
no test coverage detected