From 18bdfcef66d13de0d71a34c8ce4b784aa711fcce Mon Sep 17 00:00:00 2001 From: Tristav <124001124+Pricstas@users.noreply.github.com> Date: Fri, 27 Dec 2024 20:56:19 +0100 Subject: [PATCH] typo PCommand.ts --- packages/domainobjs/ts/commands/PCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/domainobjs/ts/commands/PCommand.ts b/packages/domainobjs/ts/commands/PCommand.ts index 4d2193c553..ae45f11763 100644 --- a/packages/domainobjs/ts/commands/PCommand.ts +++ b/packages/domainobjs/ts/commands/PCommand.ts @@ -203,7 +203,7 @@ export class PCommand { const nonce = extract(p, 150); const pollId = extract(p, 200); - // create new public key but allow it to be invalid (as when passing an mismatched + // create new public key but allow it to be invalid (as when passing a mismatched // encPubKey, a message will not decrypt resulting in potentially invalid public keys) const newPubKey = new PubKey([decrypted[1], decrypted[2]], true); const salt = decrypted[3];