Skip to content

Commit

Permalink
fix: remove debug console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
manoranjith committed Nov 12, 2024
1 parent de94a27 commit 5799685
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/sdk/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export const getKeysFromGateway = async (url: string) => {
if (data) {
const pubKeyUrl = data.response.fhe_key_info[0].fhe_public_key.urls[0];
const publicKeyId = data.response.fhe_key_info[0].fhe_public_key.data_id;
console.log('pubKeyUrl', pubKeyUrl);
const publicKeyResponse = await fetch(pubKeyUrl);
const publicKey = await publicKeyResponse.arrayBuffer();
const publicParamsUrl = data.response.crs['2048'].urls[0];
Expand Down

0 comments on commit 5799685

Please sign in to comment.