Skip to content

Commit b76d828

Browse files
committed
add for version env
1 parent 43ad858 commit b76d828

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

playground/components.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ func (r *RethEL) ReleaseArtifact() *release {
310310
return &release{
311311
Name: "reth",
312312
Org: "paradigmxyz",
313-
Version: "v1.3.1",
313+
Version: "v1.4.8",
314314
Arch: func(goos, goarch string) string {
315315
if goos == "linux" {
316316
return "x86_64-unknown-linux-gnu"
@@ -345,7 +345,7 @@ func (r *RethEL) Run(svc *Service, ctx *ExContext) {
345345
// start the reth el client
346346
svc.
347347
WithImage("ghcr.io/paradigmxyz/reth").
348-
WithTag("v1.3.1").
348+
WithTag("v1.4.8").
349349
WithEntrypoint("/usr/local/bin/reth").
350350
WithArgs(
351351
"node",
@@ -673,7 +673,7 @@ func (m *MevBoost) Run(service *Service, ctx *ExContext) {
673673

674674
for _, endpoint := range m.RelayEndpoints {
675675
if endpoint == "mev-boost-relay" {
676-
// create relay URL with public key for local mev-boost-relay
676+
// creating relay url with public key for mev-boost-relay
677677
envSkBytes, err := hexutil.Decode(mevboostrelay.DefaultSecretKey)
678678
if err != nil {
679679
continue
@@ -691,17 +691,17 @@ func (m *MevBoost) Run(service *Service, ctx *ExContext) {
691691
continue
692692
}
693693

694-
relayURL := fmt.Sprintf("http://%s@%s:%s", publicKey.String(), endpoint, "5555")
694+
relayURL := ConnectRaw("mev-boost-relay", "http", "http", publicKey.String())
695695
args = append(args, "--relay", relayURL)
696696
} else {
697697
args = append(args, "--relay", Connect(endpoint, "http"))
698698
}
699699
}
700700

701-
service.
702-
WithImage("flashbots/mev-boost").
701+
service.WithImage("flashbots/mev-boost").
703702
WithTag("latest").
704-
WithArgs(args...)
703+
WithArgs(args...).
704+
WithEnv("GENESIS_FORK_VERSION", "0x20000089")
705705
}
706706

707707
func (m *MevBoost) Name() string {

0 commit comments

Comments
 (0)