diff --git a/src/services/RedstoneServiceV3.ts b/src/services/RedstoneServiceV3.ts index cd3b5c8..188dc16 100644 --- a/src/services/RedstoneServiceV3.ts +++ b/src/services/RedstoneServiceV3.ts @@ -473,17 +473,6 @@ function getCalldataWithTimestamp( }; } -function splitResponse(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(