feat: eip-7251 (#9335)

This commit is contained in:
Oliver
2024-07-08 14:48:22 +02:00
committed by GitHub
parent 9e45c82fe9
commit 92fb25137e
3 changed files with 153 additions and 2 deletions

View File

@ -98,6 +98,14 @@ pub enum BlockValidationError {
/// The error message.
message: String,
},
/// EVM error during consolidation requests contract call [EIP-7251]
///
/// [EIP-7251]: https://eips.ethereum.org/EIPS/eip-7251
#[error("failed to apply consolidation requests contract call: {message}")]
ConsolidationRequestsContractCall {
/// The error message.
message: String,
},
/// Error when decoding deposit requests from receipts [EIP-6110]
///
/// [EIP-6110]: https://eips.ethereum.org/EIPS/eip-6110