Skip to content

Commit

Permalink
fix: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsower committed Aug 27, 2024
1 parent 30c75d4 commit 22f609b
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions src/services/RedstoneServiceV3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,17 +473,6 @@ function getCalldataWithTimestamp(
};
}

function splitResponse<T>(arr: T[], size: number): T[][] {
const chunks = [];

for (let i = 0; i < arr.length; i += size) {
const chunk = arr.slice(i, i + size);
chunks.push(chunk);
}

return chunks;
}

function printFeeds(feeds: RedstoneFeed[]): string {
return feeds
.map(
Expand Down

0 comments on commit 22f609b

Please sign in to comment.