diff --git a/crates/rpc/rpc/src/eth/error.rs b/crates/rpc/rpc/src/eth/error.rs index 77bffee400..90ed87facc 100644 --- a/crates/rpc/rpc/src/eth/error.rs +++ b/crates/rpc/rpc/src/eth/error.rs @@ -40,11 +40,11 @@ pub enum EthApiError { /// Thrown when querying for `finalized` or `safe` block before the merge transition is /// finalized, /// - /// op-node uses case sensitive string comparison to parse this error: - /// + /// op-node now checks for either `Unknown block` OR `unknown block`: + /// /// /// TODO(#8045): Temporary, until a version of is pushed through that doesn't require this to figure out the EL sync status. - #[error("Unknown block")] + #[error("unknown block")] UnknownSafeOrFinalizedBlock, /// Thrown when an unknown block or transaction index is encountered #[error("unknown block or tx index")]