Skip to content

Commit

Permalink
fix: Another missing await
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik authored May 14, 2020
1 parent 9c36f84 commit b924f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/daf-ethr-did/src/identity-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class IdentityController extends AbstractIdentityController {
return true
} catch (e) {
debug(e.message)
this.kms.deleteKey(key.serialized.kid)
await this.kms.deleteKey(key.serialized.kid)
return false
}
}
Expand Down

0 comments on commit b924f92

Please sign in to comment.