(keyringId, attrKey)
| 333 | * @return {Any} either the attribute value if attrKey is provided, or an object map with all attributes |
| 334 | */ |
| 335 | export async function getKeyringAttr(keyringId, attrKey) { |
| 336 | await keyringInitialized; |
| 337 | return keyringAttr.get(keyringId, attrKey); |
| 338 | } |
| 339 | |
| 340 | /** |
| 341 | * Get default key by interating through preferred keyring queue |
no test coverage detected