From ce194376a31ad1b9465aacb0bb16c7f3f9779bda Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 9 Dec 2024 10:27:43 +0000 Subject: [PATCH] Add comment --- src/stores/InitialCryptoSetupStore.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/InitialCryptoSetupStore.ts b/src/stores/InitialCryptoSetupStore.ts index 24b2776fd7..0c2e49f5ca 100644 --- a/src/stores/InitialCryptoSetupStore.ts +++ b/src/stores/InitialCryptoSetupStore.ts @@ -76,6 +76,8 @@ export class InitialCryptoSetupStore extends EventEmitter { this.stores = stores; this.onFinished = onFinished; + // We just start this process: it's progress is tracked by the events rather + // than returning a promise, so we don't bother. this.doSetup().catch(() => logger.error("Initial crypto setup failed")); }