From 6050e5f661be16c70443120b52f0dec6df81dfdd Mon Sep 17 00:00:00 2001 From: harkamal Date: Fri, 23 Feb 2024 19:32:16 +0530 Subject: [PATCH] lint and tsc --- packages/beacon-node/test/sim/electra-interop.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/beacon-node/test/sim/electra-interop.test.ts b/packages/beacon-node/test/sim/electra-interop.test.ts index 0005da4fea7e..c1663211cbd9 100644 --- a/packages/beacon-node/test/sim/electra-interop.test.ts +++ b/packages/beacon-node/test/sim/electra-interop.test.ts @@ -1,5 +1,6 @@ import fs from "node:fs"; import {describe, it, vi, afterAll, afterEach} from "vitest"; +/* eslint-disable @typescript-eslint/naming-convention */ import _ from "lodash"; import {LogLevel, sleep} from "@lodestar/utils"; import {ForkName, SLOTS_PER_EPOCH, UNSET_DEPOSIT_RECEIPTS_START_INDEX} from "@lodestar/params"; @@ -35,7 +36,7 @@ import {shell} from "./shell.js"; /* eslint-disable no-console, @typescript-eslint/naming-convention */ const jwtSecretHex = "0xdc6457099f127cf0bac78de8b297df04951281909db4f58b43def7c7151e765d"; -const retryAttempts = defaultExecutionEngineHttpOpts.retryAttempts; +const retries = defaultExecutionEngineHttpOpts.retries; const retryDelay = defaultExecutionEngineHttpOpts.retryDelay; describe("executionEngine / ExecutionEngineHttp", function () { if (!process.env.EL_BINARY_DIR || !process.env.EL_SCRIPT_DIR) { @@ -84,7 +85,7 @@ describe("executionEngine / ExecutionEngineHttp", function () { const loggerExecutionEngine = testLogger("executionEngine"); const executionEngine = initializeExecutionEngine( - {mode: "http", urls: [engineRpcUrl], jwtSecretHex, retryAttempts, retryDelay}, + {mode: "http", urls: [engineRpcUrl], jwtSecretHex, retries, retryDelay}, {signal: controller.signal, logger: loggerExecutionEngine} );