Skip to content

Commit

Permalink
Get back to using signerPublicKey
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoch committed Dec 17, 2024
1 parent ec721dd commit 050a936
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ export class IframeEnclave implements EnclaveProvider {
async ready(
humanId?: string,
signerAddress?: string,
signerEncryptionPublicKey?: string,
signerPublicKey?: string,
expectedUserEncryptionPublicKey?: string,
): Promise<Uint8Array> {
let { userEncryptionPublicKey } = (await this.#requestToEnclave({
storage: {
humanId,
signerAddress,
signerEncryptionPublicKey,
signerPublicKey,
expectedUserEncryptionPublicKey,
},
})) as StoredData;
Expand Down

0 comments on commit 050a936

Please sign in to comment.