revm_primitives/
eip170.rs

1//! EIP-170: Contract code size limit
2
3/// EIP-170: Contract code size limit
4///
5/// By default the limit is `0x6000` (~25kb).
6pub const MAX_CODE_SIZE: usize = 0x6000;