File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,10 @@ def get_config(
121121
122122 IMAGE_NAME = assertoor_params .image
123123
124+ if assertoor_params .image == constants .DEFAULT_ASSERTOOR_IMAGE :
125+ if network_params .fulu_fork_epoch < constants .FULU_FORK_EPOCH :
126+ IMAGE_NAME = "ethpandaops/assertoor:fulu-support"
127+
124128 return ServiceConfig (
125129 image = IMAGE_NAME ,
126130 ports = USED_PORTS ,
Original file line number Diff line number Diff line change @@ -122,6 +122,10 @@ def get_config(
122122
123123 IMAGE_NAME = dora_params .image
124124
125+ if dora_params .image == constants .DEFAULT_DORA_IMAGE :
126+ if network_params .fulu_fork_epoch < constants .FULU_FORK_EPOCH :
127+ IMAGE_NAME = "ethpandaops/dora:fulu-support"
128+
125129 return ServiceConfig (
126130 image = IMAGE_NAME ,
127131 ports = USED_PORTS ,
Original file line number Diff line number Diff line change @@ -85,7 +85,8 @@ MOCK_MEV_TYPE = "mock"
8585FLASHBOTS_MEV_TYPE = "flashbots"
8686MEV_RS_MEV_TYPE = "mev-rs"
8787COMMIT_BOOST_MEV_TYPE = "commit-boost"
88-
88+ DEFAULT_DORA_IMAGE = "ethpandaops/dora:latest"
89+ DEFAULT_ASSERTOOR_IMAGE = "ethpandaops/assertoor:latest"
8990DEFAULT_SNOOPER_IMAGE = "ethpandaops/rpc-snooper:latest"
9091DEFAULT_FLASHBOTS_RELAY_IMAGE = "flashbots/mev-boost-relay:0.29.2a3"
9192DEFAULT_FLASHBOTS_BUILDER_IMAGE = "ethpandaops/reth-rbuilder:develop"
Original file line number Diff line number Diff line change @@ -1028,7 +1028,7 @@ def get_default_blockscout_params():
10281028
10291029def get_default_dora_params ():
10301030 return {
1031- "image" : "ethpandaops/dora:latest" ,
1031+ "image" : constants . DEFAULT_DORA_IMAGE ,
10321032 "env" : {},
10331033 }
10341034
@@ -1127,7 +1127,7 @@ def get_default_goomy_blob_params():
11271127
11281128def get_default_assertoor_params ():
11291129 return {
1130- "image" : "ethpandaops/assertoor:latest" ,
1130+ "image" : constants . DEFAULT_ASSERTOOR_IMAGE ,
11311131 "run_stability_check" : False ,
11321132 "run_block_proposal_check" : False ,
11331133 "run_lifecycle_test" : False ,
You can’t perform that action at this time.
0 commit comments