revm_primitives/
eip170.rs

1//! EIP-170: Contract Code Size Limit
2//!
3//! Introduces a maximum limit on smart contract code size.
4
5/// EIP-170: Contract code size limit
6///
7/// By default the limit is `0x6000` (~25kb).
8pub const MAX_CODE_SIZE: usize = 0x6000;