File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,11 @@ use types::*;
18
18
///
19
19
/// **This is available only with the `default` features, or if `proxy` and one ssl implementation are enabled**
20
20
pub enum ClientType {
21
- #[ doc ( hidden ) ]
21
+ #[ allow ( missing_docs ) ]
22
22
TCP ( RawClient < ElectrumPlaintextStream > ) ,
23
- #[ doc ( hidden ) ]
23
+ #[ allow ( missing_docs ) ]
24
24
SSL ( RawClient < ElectrumSslStream > ) ,
25
- #[ doc ( hidden ) ]
25
+ #[ allow ( missing_docs ) ]
26
26
Socks5 ( RawClient < ElectrumProxyStream > ) ,
27
27
}
28
28
Original file line number Diff line number Diff line change @@ -450,7 +450,7 @@ impl<S: Read + Write> RawClient<S> {
450
450
s. send ( ChannelMessage :: Error ( error. clone ( ) ) )
451
451
. expect ( "Unable to send ChannelMessage::Error" ) ;
452
452
}
453
- return Err ( Error :: SharedIOError ( error. clone ( ) ) ) ;
453
+ return Err ( Error :: SharedIOError ( error) ) ;
454
454
}
455
455
trace ! ( "<== {}" , raw_resp) ;
456
456
You can’t perform that action at this time.
0 commit comments