Skip to content

Commit

Permalink
Get back to using signerPublicKey on enclave
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoch committed Dec 17, 2024
1 parent 2582f15 commit 0032f1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/idos-enclave/src/lib/enclave.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -325,7 +325,7 @@ export class Enclave {
receiverPublicKey,
senderPublicKey,
signerAddress,
signerEncryptionPublicKey,
signerPublicKey,
mode,
theme,
credentials,
Expand All @@ -348,7 +348,7 @@ export class Enclave {
storage: () => [
humanId,
signerAddress,
signerEncryptionPublicKey,
signerPublicKey,
expectedUserEncryptionPublicKey,
litAttrs,
userWallets,
Expand Down

0 comments on commit 0032f1c

Please sign in to comment.