This commit is contained in:
2025-05-06 17:20:05 -03:00
parent f78fa30923
commit 706e4271fa
2 changed files with 4 additions and 6 deletions

View File

@ -75,7 +75,7 @@ export async function routes() {
taskId: TASK_ID, taskId: TASK_ID,
action: "add-todo-status", action: "add-todo-status",
stakingKey, stakingKey,
} };
const middleServerSignature = await namespaceWrapper.payloadSigning(middleServerPayload, secretKey); const middleServerSignature = await namespaceWrapper.payloadSigning(middleServerPayload, secretKey);
console.error("[TASK] Error summarizing repository:", message); console.error("[TASK] Error summarizing repository:", message);
console.log("[TASK] middleServerSignature", middleServerSignature); console.log("[TASK] middleServerSignature", middleServerSignature);
@ -94,8 +94,6 @@ export async function routes() {
return; return;
} }
if (!publicKey) { if (!publicKey) {
throw new Error("No public key found"); throw new Error("No public key found");
} }

View File

@ -57,6 +57,6 @@ export const actionMessage = {
export const defaultBountyMarkdownFile = export const defaultBountyMarkdownFile =
"https://raw.githubusercontent.com/koii-network/prometheus-swarm-bounties/master/README.md"; "https://raw.githubusercontent.com/koii-network/prometheus-swarm-bounties/master/README.md";
export const customReward = 400 * 10 ** 9; // This should be in ROE! export const customReward = 1; // This should be in ROE!
export const middleServerUrl = "https://builder247-prod.dev.koii.network"; export const middleServerUrl = "https://builder247-test.dev.koii.network";