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 1dd8480 commit 8498ecbCopy full SHA for 8498ecb
consensus/types/src/chain_spec.rs
@@ -515,9 +515,11 @@ impl ChainSpec {
515
.is_some_and(|zkvm_fork_epoch| epoch >= zkvm_fork_epoch)
516
}
517
518
+ /// TODO(ethproofs): Changed to Electra fork epoch.
519
+ ///
520
/// Returns true if zkVM mode can be used at the given fork.
521
pub fn is_zkvm_enabled_for_fork(&self, fork_name: ForkName) -> bool {
- self.is_zkvm_enabled() && fork_name.fulu_enabled()
522
+ self.is_zkvm_enabled() && fork_name.electra_enabled()
523
524
525
/// Returns the minimum number of execution proofs required.
0 commit comments