Skip to content

Commit d3df551

Browse files
committed
fix: fields for Unreachable error
1 parent 1ffd363 commit d3df551

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1776,7 +1776,7 @@ impl From<RequestError> for io::Error {
17761776
#[cfg(feature = "rpc")]
17771777
RequestError::Other { source, .. } => io::Error::other(source),
17781778
#[cfg(not(feature = "rpc"))]
1779-
RequestError::Unreachable => unreachable!(),
1779+
RequestError::Unreachable { .. } => unreachable!(),
17801780
}
17811781
}
17821782
}

0 commit comments

Comments
 (0)