Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kurtosis.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
name: "github.com/ethpandaops/ethereum-package"
name: "github.com/cskiraly/ethereum-package"
6 changes: 5 additions & 1 deletion src/el/geth/geth_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ VERBOSITY_LEVELS = {
BUILDER_IMAGE_STR = "builder"
SUAVE_ENABLED_GETH_IMAGE_STR = "suave"

FORCE_BOOTNODE_OVERRIDE = True

def launch(
plan,
Expand Down Expand Up @@ -234,7 +235,10 @@ def get_config(
network_params.network == constants.NETWORK_NAME.kurtosis
or constants.NETWORK_NAME.shadowfork in network_params.network
):
if len(existing_el_clients) > 0:
if (
len(existing_el_clients) > 0
or FORCE_BOOTNODE_OVERRIDE
):
cmd.append(
"--bootnodes="
+ ",".join(
Expand Down
Loading