We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b70d9cd commit f8698baCopy full SHA for f8698ba
sdk/src/network-client.ts
@@ -1630,21 +1630,20 @@ class AleoNetworkClient {
1630
if (options.apiKey) {
1631
headers["X-Provable-API-Key"] = options.apiKey;
1632
}
1633
- console.log("Using headers:", headers);
+
1634
try {
1635
const response = await retryWithBackoff(() =>
1636
post(`${proverUri}/prove`, {
1637
body: provingRequestString,
1638
headers
1639
})
1640
);
1641
-
1642
const responseText = await response.text();
1643
return parseJSON(responseText);
1644
} catch (error) {
1645
const errorMessage = error instanceof Error ? error.message : 'Unknown error';
1646
throw new Error(`Failed to submit proving request: ${errorMessage}`);
1647
- }
+ }
1648
1649
1650
/**
0 commit comments