pub struct InitCodeTooLarge {
pub size: u64,
pub max: u64,
}Expand description
@notice The init code of the keyless deployment transaction exceeds the configured
maximum initcode size for the current spec.
@dev REX5+: enforced by the Rust interceptor before the sandbox is constructed, because
the deposit-style sandbox bypasses op-revm’s validate_env (which would otherwise
apply the same limit via revm’s EIP-3860 check).
@param size The init code length in bytes.
@param max The configured maximum init code size (from cfg().max_initcode_size()).
Custom error with signature InitCodeTooLarge(uint64,uint64) and selector 0x577f7120.
error InitCodeTooLarge(uint64 size, uint64 max);Fields§
§size: u64§max: u64Trait Implementations§
Source§impl Clone for InitCodeTooLarge
impl Clone for InitCodeTooLarge
Source§fn clone(&self) -> InitCodeTooLarge
fn clone(&self) -> InitCodeTooLarge
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl SolError for InitCodeTooLarge
impl SolError for InitCodeTooLarge
Source§type Parameters<'a> = (Uint<64>, Uint<64>)
type Parameters<'a> = (Uint<64>, Uint<64>)
The underlying tuple type which represents the error’s members. Read more
Source§type Token<'a> = <<InitCodeTooLarge as SolError>::Parameters<'a> as SolType>::Token<'a>
type Token<'a> = <<InitCodeTooLarge as SolError>::Parameters<'a> as SolType>::Token<'a>
The corresponding
TokenSeq type.Source§fn new<'a>(tuple: <Self::Parameters<'a> as SolType>::RustType) -> Self
fn new<'a>(tuple: <Self::Parameters<'a> as SolType>::RustType) -> Self
Convert from the tuple type used for ABI encoding and decoding.
Source§fn tokenize(&self) -> Self::Token<'_>
fn tokenize(&self) -> Self::Token<'_>
Convert to the token type used for EIP-712 encoding and decoding.
Source§fn abi_decode_raw_validate(data: &[u8]) -> Result<Self>
fn abi_decode_raw_validate(data: &[u8]) -> Result<Self>
ABI decode this error’s arguments from the given slice, without its
selector, with validation. Read more
Source§fn abi_encoded_size(&self) -> usize
fn abi_encoded_size(&self) -> usize
The size of the error params when encoded in bytes, without the
selector.
Source§fn abi_decode_raw(data: &[u8]) -> Result<Self, Error>
fn abi_decode_raw(data: &[u8]) -> Result<Self, Error>
ABI decode this call’s arguments from the given slice, without its
selector.
Source§fn abi_decode(data: &[u8]) -> Result<Self, Error>
fn abi_decode(data: &[u8]) -> Result<Self, Error>
ABI decode this error’s arguments from the given slice, with the
selector.
Source§fn abi_decode_validate(data: &[u8]) -> Result<Self, Error>
fn abi_decode_validate(data: &[u8]) -> Result<Self, Error>
ABI decode this error’s arguments from the given slice, with the
selector, with validation. Read more
Source§fn abi_encode_raw(&self, out: &mut Vec<u8>)
fn abi_encode_raw(&self, out: &mut Vec<u8>)
ABI encode the error to the given buffer without its selector.
Auto Trait Implementations§
impl Freeze for InitCodeTooLarge
impl RefUnwindSafe for InitCodeTooLarge
impl Send for InitCodeTooLarge
impl Sync for InitCodeTooLarge
impl Unpin for InitCodeTooLarge
impl UnsafeUnpin for InitCodeTooLarge
impl UnwindSafe for InitCodeTooLarge
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more