-
Notifications
You must be signed in to change notification settings - Fork 742
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
make execution-endpoint
required
#5165
Conversation
1a3fa0c
to
3dedab2
Compare
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.
Linking a diff of the code with the same indentation so it's easier to review https://www.diffchecker.com/v81VrtmX/
Change looks good thanks 🙏
b0f19f1
to
a78692d
Compare
a78692d
to
486686d
Compare
@zhiqiangxu can you solve conflicts? |
@dapplion Done. |
The |
@chong-he The real problem is the error that happened when running |
Probably need to solve the compile issue first |
No idea how to solve the compile issue :( |
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.
Hijacking this PR a bit sorry @zhiqiangxu
I've fixed the CLI flag tests now.
@@ -2505,13 +2518,13 @@ fn logfile_format_flag() { | |||
fn sync_eth1_chain_default() { | |||
CommandLineTest::new() | |||
.run_with_zero_port() | |||
.with_config(|config| assert_eq!(config.sync_eth1_chain, false)); | |||
.with_config(|config| assert_eq!(config.sync_eth1_chain, true)); |
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.
Note that sync_eth1_chain
will now effectively default to true
since it is set to true
when --execution_endpoint
is provided (which will now be all the time).
This may very well deprecate this config value entirely, although it can still technically be set back to false
using the --disable-deposit-contract-sync
flag.
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.
I think this means we can hide and deprecate the --eth1
flag.
@mergify queue |
🛑 The pull request has been removed from the queue
|
@mergify dequeue |
✅ The pull request has been removed from the queue
|
@mergify queue |
✅ The pull request has been merged automaticallyThe pull request has been merged automatically at 16693b0 |
Issue Addressed
This PR addresses this issue.