Skip to content

Commit

Permalink
chore: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jun 11, 2024
1 parent f7527c8 commit 5059232
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/store/contract-report-sink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,12 @@ export async function interactionAlreadySaved({
failedGatewaySummaries: string[];
contract?: AoIORead;
}): Promise<boolean> {
console.log('getting observations for epoch index', epochIndex);
const observations = await contract.getObservations({
epochIndex,
});
if (observations === undefined) {
return false;
}
console.log(observations.failureSummaries);
const epochFailureSummaries = observations.failureSummaries;
if (
observations === undefined ||
Expand Down

0 comments on commit 5059232

Please sign in to comment.