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
+1 -1
View File
@@ -43,7 +43,7 @@ pub enum LightClientError {
#[derive(Debug, thiserror::Error)]
pub enum LightClientRpcError {
/// Error response from the JSON-RPC server.
#[error("{0}")]
#[error(transparent)]
JsonRpcError(JsonRpcError),
/// Smoldot could not handle the RPC call.
#[error("Smoldot could not handle the RPC call: {0}.")]