We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea49ea7 commit 9513cc3Copy full SHA for 9513cc3
beacon_node/lighthouse_network/src/types/pubsub.rs
@@ -295,9 +295,10 @@ impl<E: EthSpec> PubsubMessage<E> {
295
}
296
GossipKind::ExecutionProof => {
297
match fork_context.get_fork_from_context_bytes(gossip_topic.fork_digest) {
298
+ // TODO(ethproofs): Changed to Electra for the Ethproofs demo testing.
299
// TODO(zkproofs): we don't have the ChainSpec here, so if we change this to
- // be for gloas, then we should change it here too
300
- Some(fork) if fork.fulu_enabled() => {
+ // be for gloas, then we should change it here too.
301
+ Some(fork) if fork.electra_enabled() => {
302
let execution_proof = Arc::new(
303
ExecutionProof::from_ssz_bytes(data)
304
.map_err(|e| format!("{:?}", e))?,
0 commit comments