Skip to content

Commit

Permalink
remove debugging logs
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed Apr 30, 2024
1 parent 27dbb08 commit 26e543e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions packages/engine/paima-funnel/src/cde/minaGeneric.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,7 @@ export async function getCdeData(
): Promise<(CdeMinaActionGenericDatum | CdeMinaEventGenericDatum)[]> {
const result = [] as (CdeMinaActionGenericDatum | CdeMinaEventGenericDatum)[];

console.log('fromTo', fromTimestamp, toTimestamp);

while (true) {
console.log('making query');
const unmapped = await query(
pg,
extension.address,
Expand All @@ -95,8 +92,6 @@ export async function getCdeData(
fromBlockHeight?.toString()
);

console.log('unmapped', console.log(unmapped));

const grouped = groupByTx(unmapped.rows);

const events = grouped.flatMap(perBlock =>
Expand Down

0 comments on commit 26e543e

Please sign in to comment.