Skip to content

Commit

Permalink
Fix export flow
Browse files Browse the repository at this point in the history
  • Loading branch information
r-n-o committed May 9, 2024
1 parent 4145d16 commit 4a9c3e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion export/index.template.html
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ <h2>Message log</h2>
if (!TKHQ.verifyEnclaveSignature) {
throw new Error("method not loaded");
}
verified = await TKHQ.verifyEnclaveSignature(bundleObj.enclaveQuorumPublic, bundleObj.dataSignature, bundleObj.data);
verified = await TKHQ.verifyEnclaveSignature(bundleObj.enclaveQuorumPublic, bundleObj.dataSignature, bundleObj.data.encappedPublic);
if (!verified) {
throw new Error(`failed to verify enclave signature: ${bundle}`);
}
Expand Down

0 comments on commit 4a9c3e3

Please sign in to comment.