-
Notifications
You must be signed in to change notification settings - Fork 1
Remove proof generation type node #3
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
Conversation
- check for zkvm capability in the enr - execution_proof_lookup_request filters zkvm nodes
| #[test] | ||
| fn test_proof_lookup_unrequested_proof() { |
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.
Remove tests like this, all zkvm enabled nodes will have historical proofs moving forward
| // Expect peer to provide all requested proofs - if they can't, penalize | ||
| 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.
flagging this change
beacon_node/http_api/src/lib.rs
Outdated
| }) | ||
| }, | ||
| ); | ||
| // TODO(zkproofs): I think we want to return a block_with_witness |
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.
Here block refers to EL block -- okay given it merges with verkle stateless abstraction
| pub fn post_beacon_pool_execution_proofs<T: BeaconChainTypes>( | ||
| network_tx_filter: &NetworkTxFilter<T>, |
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.
should be protected similar to when one is posting a block
| // Proof is valid but was received via non-gossip source | ||
| // It's in the DA checker, so we should publish it to gossip |
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: Reaching this branch won't get it published via gossip
No description provided.