Skip to content

chore(kleros-sdk): remove-console-logs #1773

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions kleros-sdk/src/dataMappings/retrieveRealityData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ export const retrieveRealityData = async (realityQuestionID: string, arbitrable?
};

const questionData = await executeAction(questionMapping);
console.log("questionData", questionData);

const templateMapping: AbiEventMapping = {
type: "abi/event",
Expand All @@ -66,7 +65,6 @@ export const retrieveRealityData = async (realityQuestionID: string, arbitrable?
};

const templateData = await executeAction(templateMapping);
console.log("templateData", templateData);

if (!templateData) {
throw new NotFoundError("Template Data", "Failed to retrieve template data");
Expand All @@ -82,8 +80,6 @@ export const retrieveRealityData = async (realityQuestionID: string, arbitrable?
questionData.realityQuestion
);

console.log("populatedTemplate", populatedTemplate);

let answers: RealityAnswer[] = [];
if (populatedTemplate.type === "bool") {
answers = [
Expand Down
4 changes: 1 addition & 3 deletions kleros-sdk/src/dataMappings/utils/populateTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@ export const populateTemplate = (mustacheTemplate: string, data: any): DisputeDe

const validation = DisputeDetailsSchema.safeParse(dispute);
if (!validation.success) {
console.error("Validation errors:", validation.error.errors, "\n\nDispute details:", `${JSON.stringify(dispute)}`);
throw new InvalidFormatError("Invalid dispute details format");
throw validation.error;
}
console.log(dispute);

return dispute;
};
Loading