Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ecioppettini committed May 3, 2024
1 parent 26e543e commit 9c65d86
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/engine/paima-funnel/src/cde/minaGeneric.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ function groupByTx(events: PerBlock[]) {
height: number;
timestamp: string;
};
// TODO: could each data by just a tuple?
eventsData: { data: string[][]; txHash: string }[];
}[];

Expand Down
2 changes: 0 additions & 2 deletions packages/engine/paima-funnel/src/reading.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ export async function getMultipleBlockData(
): Promise<ChainData[]> {
const batch = new web3.BatchRequest();

// console.log('getting multiple block data', fromBlock, toBlock);

const blockRange = Array.from({ length: toBlock - fromBlock + 1 }, (_, i) => i + fromBlock);
const blockPromises = blockRange.map(blockNumber => {
return new Promise<ChainData>((resolve, reject) => {
Expand Down
1 change: 0 additions & 1 deletion packages/engine/paima-sm/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export interface CardanoPresyncChainData {
extensionDatums: ChainDataExtensionDatum[];
}

// TODO: potentially this and Cardano can be collapsed
export interface MinaPresyncChainData {
network: string;
networkType: ConfigNetworkType.MINA;
Expand Down

0 comments on commit 9c65d86

Please sign in to comment.