-
Notifications
You must be signed in to change notification settings - Fork 45
Add mkosi flashbots-images VM to playground #302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| "--http-allow-origin", "*", | ||
| "--disable-packet-filter", | ||
| "--target-peers", "0", | ||
| "--target-peers", "1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this necessary? I remember at some point if target peers was not 0, the beacon node would wait for the number of peers before returning as healthy, which would create problems for non builder-hub deploymnets.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To clarify the setup:
- Playground runs reth + lighthouse in Docker
- VM adds a second reth + lighthouse pair that needs to sync with playground
- need to support both: playground with VM and without VM
Current behavior:
--target-peer 0: VM's lightouse doesn't connect to the playground--target-peer 1: Vm works, but you mentioned this breaks non-VM setup
I've tried --subscribe-all-subnets with --target-peers 0 but VM still doesn't connect.
Do you know a config that would work for both VM and non-VM setups?
No description provided.