Skip to content

Commit 7302ebd

Browse files
committed
Change Debug impl to local Client
In preparation for adding another async client change the Debug impl to refer to the local sync Client so that there is no conflict when adding the second async Client struct.
1 parent 7d556f9 commit 7302ebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonrpc/src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ impl Client {
124124
}
125125
}
126126

127-
impl fmt::Debug for crate::Client {
127+
impl fmt::Debug for Client {
128128
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
129129
write!(f, "jsonrpc::Client(")?;
130130
self.transport.fmt_target(f)?;

0 commit comments

Comments
 (0)