From 8a6a1e6a873ecce8f6e8b827da5703a9f39beada Mon Sep 17 00:00:00 2001 From: Malatrax Date: Fri, 2 Aug 2024 18:14:39 +0200 Subject: [PATCH] chore: cleanup --- src/runners/cairoRunner.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/runners/cairoRunner.ts b/src/runners/cairoRunner.ts index f6209e08..b841cbf8 100644 --- a/src/runners/cairoRunner.ts +++ b/src/runners/cairoRunner.ts @@ -256,7 +256,6 @@ export class CairoRunner { } } - console.log('steps: ', this.vm.currentStep); if (isProofMode || relocate) this.vm.relocate(offset); } @@ -434,9 +433,6 @@ export class CairoRunner { default: const minStep = ratio * cellsPerInstance; if (this.vm.currentStep < minStep) { - // console.log( - // `PROOF MODE (${builtin}): minimum steps (${minStep}) not reached yet: ${this.vm.currentStep} steps` - // ); return { size, capacity: MISSING_STEPS_CAPACITY }; } capacity = (this.vm.currentStep / ratio) * cellsPerInstance;