From 22f609b608366496f4c46be85f6e1f36a196a03c Mon Sep 17 00:00:00 2001 From: doomsower <12031673+doomsower@users.noreply.github.com> Date: Tue, 27 Aug 2024 13:34:39 -0300 Subject: [PATCH] fix: remove unused code --- src/services/RedstoneServiceV3.ts | 11 ----------- 1 file changed, 11 deletions(-) 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(