Skip to content

Commit

Permalink
revert merge interop changes
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Aug 1, 2022
1 parent c5ea976 commit 3f377aa
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/beacon-node/test/sim/merge-interop.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {getAndInitDevValidators} from "../utils/node/validator.js";
import {Eth1Provider} from "../../src/index.js";
import {ZERO_HASH} from "../../src/constants/index.js";
import {bytesToData, dataToBytes, quantityToNum} from "../../src/eth1/provider/utils.js";
import {defaultExecutionEngineHttpOpts} from "../../src/execution/engine/http.js";
import {logFilesDir} from "./params.js";
import {shell} from "./shell.js";

Expand All @@ -47,8 +46,6 @@ import {shell} from "./shell.js";
const terminalTotalDifficultyPreMerge = 10;
const TX_SCENARIOS = process.env.TX_SCENARIOS?.split(",") || [];
const jwtSecretHex = "0xdc6457099f127cf0bac78de8b297df04951281909db4f58b43def7c7151e765d";
const retryAttempts = defaultExecutionEngineHttpOpts.retryAttempts;
const retryDelay = defaultExecutionEngineHttpOpts.retryDelay;

describe("executionEngine / ExecutionEngineHttp", function () {
this.timeout("10min");
Expand Down Expand Up @@ -160,10 +157,7 @@ describe("executionEngine / ExecutionEngineHttp", function () {
}

const controller = new AbortController();
const executionEngine = new ExecutionEngineHttp(
{urls: [engineApiUrl], jwtSecretHex, retryAttempts, retryDelay},
{signal: controller.signal}
);
const executionEngine = new ExecutionEngineHttp({urls: [engineApiUrl], jwtSecretHex}, controller.signal);

// 1. Prepare a payload

Expand Down

0 comments on commit 3f377aa

Please sign in to comment.