zk_evm 0.153.11

ZKsync out-of-circuit EraEVM implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Clone, Copy, Debug)]
pub enum OpcodeDecodingError {
    UnknownOpcode,
    EncodingIsTooLong,
}

impl std::fmt::Display for OpcodeDecodingError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
        write!(f, "{:?}", self)
    }
}

impl std::error::Error for OpcodeDecodingError {}