op_alloy::consensus

Trait Hardfork

Source
pub trait Hardfork {
    // Required method
    fn txs(&self) -> impl Iterator<Item = Bytes>;
}
Available on crate feature consensus only.
Expand description

The trait abstraction for a Hardfork.

Required Methods§

Source

fn txs(&self) -> impl Iterator<Item = Bytes>

Returns the hardfork upgrade transactions as Bytes.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§