revm-primitives 23.0.0

Revm primitives types
Documentation
1
2
3
4
5
6
7
8
//! EIP-170: Contract Code Size Limit
//!
//! Introduces a maximum limit on smart contract code size.

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