#[derive(Debug, thiserror::Error)]
pub enum CacheError {
#[error("bundle has no replacement UUID")]
BundleWithoutReplacementUuid,
#[error(transparent)]
TxRecover(#[from] alloy::consensus::crypto::RecoveryError),
#[error(transparent)]
BundleRecover(#[from] signet_bundle::BundleRecoverError),
}