Skip to content

Commit

Permalink
fixing indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
greatrat00 committed Jun 7, 2023
1 parent b369942 commit d1c298c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions scripts/advanceBlocks.ts
Original file line number Diff line number Diff line change
@@ -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();
2 changes: 1 addition & 1 deletion scripts/logBlock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
} from "./utils/common";

async function log() {
await logCurrentBlockNumber();
await logCurrentBlockNumber();
}

log();

0 comments on commit d1c298c

Please sign in to comment.