fix(rpc): correct Other error msg (#7845)

This commit is contained in:
Oliver Nordbjerg
2024-04-24 20:36:19 +02:00
committed by GitHub
parent 66c6cbc573
commit ddc5ed3263

View File

@ -115,7 +115,7 @@ pub enum EthApiError {
#[error(transparent)]
MuxTracerError(#[from] MuxError),
/// Any other error
#[error("0")]
#[error("{0}")]
Other(Box<dyn ToRpcError>),
}