diff --git a/crates/precompile/src/lib.rs b/crates/precompile/src/lib.rs index 6addef49e2..0c590bcf80 100644 --- a/crates/precompile/src/lib.rs +++ b/crates/precompile/src/lib.rs @@ -134,7 +134,8 @@ impl Precompiles { /// Returns precompiles for Cancun spec. /// - /// If `std` feature is not enabled KZG Point Evaluation precompile will not be included. + /// If the `c-kzg` feature is not enabled KZG Point Evaluation precompile will not be included, + /// effectively making this the same as Berlin. pub fn cancun() -> &'static Self { static INSTANCE: OnceBox = OnceBox::new(); INSTANCE.get_or_init(|| { @@ -181,7 +182,6 @@ impl Precompiles { /// Returns the precompile for the given address. #[inline] pub fn get(&self, address: &Address) -> Option { - //return None; self.inner.get(address).cloned() }