Skip to content

Commit

Permalink
Merge branch 'main' into bbusa/custom-label-readme
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Oct 27, 2023
2 parents abe0fe5 + 66e73fb commit b924b19
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/el/geth/geth_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,11 @@ def get_config(
]

if BUILDER_IMAGE_STR in image:
cmd[10] = "--http.api=admin,engine,net,eth,web3,debug,flashbots"
cmd[14] = "--ws.api=admin,engine,net,eth,web3,debug,flashbots"
for index, arg in enumerate(cmd):
if "--http.api" in arg:
cmd[index] = "--http.api=admin,engine,net,eth,web3,debug,mev,flashbots"
if "--ws.api" in arg:
cmd[index] = "--ws.api=admin,engine,net,eth,web3,debug,mev,flashbots"

if len(existing_el_clients) > 0:
cmd.append(
Expand Down

0 comments on commit b924b19

Please sign in to comment.