mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-12 01:21:21 +00:00
feat(swarm): remove unused DialError::ConnectionIo
variant (#3374)
This variant is never constructed.
This commit is contained in:
@ -1597,8 +1597,6 @@ pub enum DialError {
|
||||
obtained: PeerId,
|
||||
endpoint: ConnectedPoint,
|
||||
},
|
||||
/// An I/O error occurred on the connection.
|
||||
ConnectionIo(io::Error),
|
||||
/// An error occurred while negotiating the transport protocol(s) on a connection.
|
||||
Transport(Vec<(Multiaddr, TransportError<io::Error>)>),
|
||||
}
|
||||
@ -1641,10 +1639,6 @@ impl fmt::Display for DialError {
|
||||
f,
|
||||
"Dial error: Unexpected peer ID {obtained} at {endpoint:?}."
|
||||
),
|
||||
DialError::ConnectionIo(e) => write!(
|
||||
f,
|
||||
"Dial error: An I/O error occurred on the connection: {e:?}."
|
||||
),
|
||||
DialError::Transport(errors) => {
|
||||
write!(f, "Failed to negotiate transport protocol(s): [")?;
|
||||
|
||||
@ -1682,7 +1676,6 @@ impl error::Error for DialError {
|
||||
DialError::Aborted => None,
|
||||
DialError::InvalidPeerId { .. } => None,
|
||||
DialError::WrongPeerId { .. } => None,
|
||||
DialError::ConnectionIo(_) => None,
|
||||
DialError::Transport(_) => None,
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user