Skip to content

Commit 4ad336b

Browse files
committed
chore(kleros-sdk): remove-console-logs
1 parent b23c968 commit 4ad336b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

kleros-sdk/src/dataMappings/retrieveRealityData.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ export const retrieveRealityData = async (realityQuestionID: string, arbitrable?
5050
};
5151

5252
const questionData = await executeAction(questionMapping);
53-
console.log("questionData", questionData);
5453

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

6867
const templateData = await executeAction(templateMapping);
69-
console.log("templateData", templateData);
7068

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

85-
console.log("populatedTemplate", populatedTemplate);
86-
8783
let answers: RealityAnswer[] = [];
8884
if (populatedTemplate.type === "bool") {
8985
answers = [

0 commit comments

Comments
 (0)