From ad82818c4526a66b85dfce6810c9b189fe840f56 Mon Sep 17 00:00:00 2001 From: Barajeel <0xsilomir@gmail.com> Date: Fri, 21 Feb 2025 19:54:16 +0300 Subject: [PATCH] chore: fix function name downloadCyclcesBetweenCycles --- scripts/data_patcher.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/data_patcher.ts b/scripts/data_patcher.ts index 7d43bcc..05e6e20 100644 --- a/scripts/data_patcher.ts +++ b/scripts/data_patcher.ts @@ -35,7 +35,7 @@ const start = async (): Promise => { await DataSync.downloadAndSyncGenesisAccounts() // To sync accounts data that are from genesis accounts/accounts data that the network start with console.log('startCycle', startCycle, 'totalCyclesToSync', totalCyclesToSync) - await DataSync.downloadCyclcesBetweenCycles(startCycle, totalCyclesToSync, patchOnlyMissingData) + await DataSync.downloadCyclesBetweenCycles(startCycle, totalCyclesToSync, patchOnlyMissingData) console.log('Cycles Patched!') await DataSync.downloadReceiptsBetweenCycles(startCycle, totalCyclesToSync, patchOnlyMissingData) console.log('Receipts Patched!')