Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 0 additions & 1 deletion kleros-sdk/src/dataMappings/utils/populateTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const populateTemplate = (mustacheTemplate: string, data: any): DisputeDe
console.error("Validation errors:", validation.error.errors, "\n\nDispute details:", `${JSON.stringify(dispute)}`);
throw new InvalidFormatError("Invalid dispute details format");
}
console.log(dispute);

return dispute;
};
Loading