From 0cd52a0937152949f4c1606adbd9f60188eaf170 Mon Sep 17 00:00:00 2001 From: undercover-cactus Date: Wed, 10 Dec 2025 20:58:03 +0100 Subject: [PATCH] fix: pin reth version to v1.9.3 in kurtosis (#352) ## Summary The e2e test is currently not being executed and return an `error code -32000: intrinsic gas too high` error during the setup. This is somehow happening with reth v1.7.0. It is fixed by specifying a more recent reth version. In this PR we pin it too the latest v1.9.3. The complete error ``` [11:07:06.624] ERROR (544356): Failed to setup test suite: slash # Unhandled error between tests ------------------------------- 150 | const getErc20BalanceCmd = `${castExecutable} call ${underlyingTokenAddress} "balanceOf(address)(uint256)" ${tokenCreator} --rpc-url ${rpcUrl}`; 151 | const getEthBalanceCmd = `${castExecutable} balance ${tokenCreator} --rpc-url ${rpcUrl}`; 152 | console.log(getErc20BalanceCmd); 153 | const { stdout: ethBalanceOutput } = await $`sh -c ${getEthBalanceCmd}`.quiet(); 154 | console.log(ethBalanceOutput.toString().trim()); 155 | const { stdout: erc20BalanceOutput } = await $`sh -c ${getErc20BalanceCmd}`.quiet(); ^ ShellError: Failed with exit code 1 exitCode: 1, stdout: "", stderr: "Error: server returned an error response: error code -32000: intrinsic gas too high\n", at new ShellError (13:16) at new ShellPromise (75:16) at BunShell (191:35) at (/home/lola/Workspace/Moonsonglabs/datahaven/test/scripts/fund-validators.ts:155:50) at /home/lola/Workspace/Moonsonglabs/datahaven/test/suites/slash.test.ts:22:1 ``` ## What changed * Updated the kurtosis `minimal.yml` file to pin the reth image to the v1.9.3 (the latest to this date) Co-authored-by: Ahmad Kaouk <56095276+ahmadkaouk@users.noreply.github.com> --- test/configs/kurtosis/minimal.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/test/configs/kurtosis/minimal.yaml b/test/configs/kurtosis/minimal.yaml index ef8a17e4..28ffef93 100644 --- a/test/configs/kurtosis/minimal.yaml +++ b/test/configs/kurtosis/minimal.yaml @@ -1,5 +1,6 @@ participants: - el_type: reth + el_image: ghcr.io/paradigmxyz/reth:v1.9.3 cl_type: lodestar count: 2