From d1c298cccebede88ea596233085325f03d50436c Mon Sep 17 00:00:00 2001 From: greatrat00 <> Date: Wed, 7 Jun 2023 15:24:28 +0200 Subject: [PATCH] fixing indentation --- scripts/advanceBlocks.ts | 6 +++--- scripts/logBlock.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/advanceBlocks.ts b/scripts/advanceBlocks.ts index 932698f..d061395 100644 --- a/scripts/advanceBlocks.ts +++ b/scripts/advanceBlocks.ts @@ -1,9 +1,9 @@ import { advanceBlocks } from "./utils/common"; async function advance() { - // process.argv[2] will be the first command-line argument - const numBlocks = process.argv[2] ? parseInt(process.argv[2]) : 1; - await advanceBlocks(numBlocks); + // process.argv[2] will be the first command-line argument + const numBlocks = process.argv[2] ? parseInt(process.argv[2]) : 1; + await advanceBlocks(numBlocks); } advance(); diff --git a/scripts/logBlock.ts b/scripts/logBlock.ts index dc67800..a6e2ecb 100644 --- a/scripts/logBlock.ts +++ b/scripts/logBlock.ts @@ -3,7 +3,7 @@ import { } from "./utils/common"; async function log() { - await logCurrentBlockNumber(); + await logCurrentBlockNumber(); } log();