Skip to content

Commit d2cccf4

Browse files
authored
feat: snooper support (#121)
Depends on kurtosis-tech/eth-network-package#91
1 parent 4d7df4b commit d2cccf4

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,9 @@ To configure the package behaviour, you can modify your `eth2-package-params.yam
176176
// This value will be overridden by participant-specific values
177177
"global_client_log_level": "info",
178178

179+
// EngineAPI Snooper
180+
"snooper_enabled": false,
181+
179182
// Supports three valeus
180183
// Default: None - no mev boost, mev builder, mev flood or relays are spun up
181184
// mock - mock-builder & mev-boost are spun up

src/package_io/parse_input.star

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ def parse_input(input_args):
5555
fail("besu/nethermind cant be the first participant")
5656

5757
if cl_client_type in (NIMBUS_NODE_NAME) and (result["network_params"]["seconds_per_slot"] < 12):
58-
fail("nimbus can't be run with slot times below 12 seconds")
59-
58+
fail("nimbus can't be run with slot times below 12 seconds")
59+
6060
el_image = participant["el_client_image"]
6161
if el_image == "":
6262
default_image = DEFAULT_EL_IMAGES.get(el_client_type, "")
@@ -169,7 +169,8 @@ def default_input_args():
169169
"wait_for_finalization": False,
170170
"wait_for_verifications": False,
171171
"verifications_epoch_limit": 5,
172-
"global_client_log_level": "info"
172+
"global_client_log_level": "info",
173+
"snooper_enabled": False,
173174
}
174175

175176
def default_network_params():

0 commit comments

Comments
 (0)