fix: error message on rpc errors (#1804)

This commit is contained in:
Niklas Adolfsson
2024-10-01 20:01:07 +02:00
committed by GitHub
parent b5209a162e
commit cbf05d1999
3 changed files with 3 additions and 3 deletions
@@ -135,7 +135,7 @@ pub enum Error {
#[error(transparent)]
DisconnectedWillReconnect(#[from] DisconnectedWillReconnect),
/// Other rpc error.
#[error("{0}")]
#[error(transparent)]
RpcError(RpcError),
}