Skip to content

Commit

Permalink
Fix mev boost issue on Lodestar (#485)
Browse files Browse the repository at this point in the history
* fix: missing = on lodestar builder

* docs: update changelog
  • Loading branch information
stdevMac authored Dec 4, 2024
1 parent 6e485d7 commit a0d5bbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Support Mainnet for Lido CSM setup.

### Fixed
- Fix missing equals sign when setting builder on Lodestar.

## [v1.6.0] - 2024-10-18


Expand Down
2 changes: 1 addition & 1 deletion templates/services/merge/consensus/lodestar.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
- --checkpointSyncUrl={{if .CheckpointSyncUrl}}{{ .CheckpointSyncUrl }}{{else}}${CHECKPOINT_SYNC_URL}{{end}}{{end}}{{range $flag := .ClExtraFlags}}
- --{{$flag}}{{end}}{{if .MevBoostEndpoint}}
- --builder=true
- --builder.urls {{.MevBoostEndpoint}}{{end}}{{if .LoggingDriver}}
- --builder.urls={{.MevBoostEndpoint}}{{end}}{{if .LoggingDriver}}
logging:
driver: "{{.LoggingDriver}}"{{if eq .LoggingDriver "json-file"}}
options:
Expand Down

0 comments on commit a0d5bbb

Please sign in to comment.