From 3a303ff84d9b6ea160ed8b2d587ad07da9b20c0c Mon Sep 17 00:00:00 2001 From: Bruno Windels <274386+bwindels@users.noreply.github.com> Date: Thu, 2 Mar 2023 17:15:05 +0100 Subject: [PATCH] cleanup comments --- src/matrix/verification/CrossSigning.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/matrix/verification/CrossSigning.ts b/src/matrix/verification/CrossSigning.ts index 67a5616a..77b489d2 100644 --- a/src/matrix/verification/CrossSigning.ts +++ b/src/matrix/verification/CrossSigning.ts @@ -117,7 +117,6 @@ export class CrossSigning { log.set("mskNotTrusted", true); return; } - // need to be able to get the msk for the user const keyToSign = await this.deviceTracker.deviceForId(this.ownUserId, deviceId, this.hsApi, log); if (!keyToSign) { return undefined; @@ -135,7 +134,6 @@ export class CrossSigning { log.set("mskNotTrusted", true); return; } - // need to be able to get the msk for the user // can't sign own user if (userId === this.ownUserId) { return;