Skip to content

Commit

Permalink
lint and tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Feb 23, 2024
1 parent 4e98a4a commit 6050e5f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/beacon-node/test/sim/electra-interop.test.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down Expand Up @@ -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) {
Expand Down Expand Up @@ -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}
);

Expand Down

0 comments on commit 6050e5f

Please sign in to comment.