diff --git a/api/src/services/documentLoader/index.ts b/api/src/services/documentLoader/index.ts index 57038b5..614dab6 100644 --- a/api/src/services/documentLoader/index.ts +++ b/api/src/services/documentLoader/index.ts @@ -17,8 +17,6 @@ const dereferenceDID = async (url: string): Promise => { // if a verifcation method of the DID document is queried (not yet implemented in the official resolver) if (verificationMethod && didDocument) { - if (url.startsWith('did:jwk')) console.log(didDocument) - const verificationMethodDoc: any | undefined = didDocument.verificationMethod.filter(function (method: any) { return method.id === url || method.id === '#' + verificationMethod; })[0];