revm_primitives/
eip7907.rs

1//! TODO dont have specific EIP. It is part of: EIP-7907: Meter Contract Code Size And Increase Limit
2
3/// By default the limit is `0xC000` (49_152 bytes).
4pub const MAX_CODE_SIZE: usize = 0xC000;
5/// By default the limit is `0x12000` (73_728 bytes).
6pub const MAX_INITCODE_SIZE: usize = 0x12000;