From 0032f1c9e0fd49a90717dbae5a21b8d347b303fb Mon Sep 17 00:00:00 2001 From: Paulo Koch Date: Tue, 17 Dec 2024 12:00:18 +0000 Subject: [PATCH] Get back to using signerPublicKey on enclave --- apps/idos-enclave/src/lib/enclave.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/idos-enclave/src/lib/enclave.js b/apps/idos-enclave/src/lib/enclave.js index 5448a9e72..6bc0e481b 100644 --- a/apps/idos-enclave/src/lib/enclave.js +++ b/apps/idos-enclave/src/lib/enclave.js @@ -48,10 +48,10 @@ export class Enclave { }); } - storage(humanId, signerAddress, signerEncryptionPublicKey, expectedUserEncryptionPublicKey) { + storage(humanId, signerAddress, signerPublicKey, expectedUserEncryptionPublicKey) { humanId && this.store.set("human-id", humanId); signerAddress && this.store.set("signer-address", signerAddress); - signerEncryptionPublicKey && this.store.set("signer-public-key", signerEncryptionPublicKey); + signerPublicKey && this.store.set("signer-public-key", signerPublicKey); const litAttrs = this.store.get("litAttrs"); this.handlstoreableAttributes(litAttrs); @@ -325,7 +325,7 @@ export class Enclave { receiverPublicKey, senderPublicKey, signerAddress, - signerEncryptionPublicKey, + signerPublicKey, mode, theme, credentials, @@ -348,7 +348,7 @@ export class Enclave { storage: () => [ humanId, signerAddress, - signerEncryptionPublicKey, + signerPublicKey, expectedUserEncryptionPublicKey, litAttrs, userWallets,