Skip to content

Commit b4194fc

Browse files
committed
merge the mev-boost fix
1 parent 5bb546c commit b4194fc

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

internal/recipe_l1.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,20 +72,20 @@ func (l *L1Recipe) Apply(ctx *ExContext, artifacts *Artifacts) *Manifest {
7272

7373
svcManager.AddService("beacon", &LighthouseBeaconNode{
7474
ExecutionNode: elService,
75-
// MevBoostNode: "mev-boost",
75+
MevBoostNode: "mev-boost",
7676
})
7777
svcManager.AddService("validator", &LighthouseValidator{
7878
BeaconNode: "beacon",
7979
})
8080

81-
// mevBoostValidationServer := ""
82-
// if l.useRethForValidation {
83-
// mevBoostValidationServer = "el"
84-
// }
85-
// svcManager.AddService("mev-boost", &MevBoostRelay{
86-
// BeaconClient: "beacon",
87-
// ValidationServer: mevBoostValidationServer,
88-
// })
81+
mevBoostValidationServer := ""
82+
if l.useRethForValidation {
83+
mevBoostValidationServer = "el"
84+
}
85+
svcManager.AddService("mev-boost", &MevBoostRelay{
86+
BeaconClient: "beacon",
87+
ValidationServer: mevBoostValidationServer,
88+
})
8989
return svcManager
9090
}
9191

0 commit comments

Comments
 (0)