Skip to content

Commit

Permalink
Fix sim geth runne
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Feb 8, 2024
1 parent e90f2fb commit 6feebc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const generateGethNode: ExecutionNodeGenerator<ExecutionClient.Geth> = (o
const {id, mode, ttd, address, mining, clientOptions, nodeIndex} = opts;
const ports = getNodePorts(nodeIndex);

const isDocker = !process.env.GETH_DOCKER_IMAGE;
const isDocker = !!process.env.GETH_DOCKER_IMAGE;
const binaryPath = isDocker ? "" : `${process.env.GETH_BINARY_DIR}/geth`;
const {rootDir, rootDirMounted, genesisFilePathMounted, logFilePath, jwtsecretFilePathMounted} = getNodeMountedPaths(
opts.paths,
Expand Down

0 comments on commit 6feebc4

Please sign in to comment.