Skip to content

Commit f8698ba

Browse files
committed
removed console logging
1 parent b70d9cd commit f8698ba

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sdk/src/network-client.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1630,21 +1630,20 @@ class AleoNetworkClient {
16301630
if (options.apiKey) {
16311631
headers["X-Provable-API-Key"] = options.apiKey;
16321632
}
1633-
console.log("Using headers:", headers);
1633+
16341634
try {
16351635
const response = await retryWithBackoff(() =>
16361636
post(`${proverUri}/prove`, {
16371637
body: provingRequestString,
16381638
headers
16391639
})
16401640
);
1641-
16421641
const responseText = await response.text();
16431642
return parseJSON(responseText);
16441643
} catch (error) {
16451644
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
16461645
throw new Error(`Failed to submit proving request: ${errorMessage}`);
1647-
}
1646+
}
16481647
}
16491648

16501649
/**

0 commit comments

Comments
 (0)