Remove NetworkContext::io_channel() (#8625)

* Remove io_channel()

* Fix warning
This commit is contained in:
Pierre Krieger
2018-05-15 17:03:09 +02:00
committed by Afri Schoedon
parent 0c4d2fbc70
commit 8e078b1d83
2 changed files with 0 additions and 12 deletions

View File

@@ -153,10 +153,6 @@ impl<'s> NetworkContextTrait for NetworkContext<'s> {
self.session_id.map_or_else(|| Err(ErrorKind::Expired.into()), |id| self.send(id, packet_id, data))
}
fn io_channel(&self) -> IoChannel<NetworkIoMessage> {
self.io.channel()
}
fn disable_peer(&self, peer: PeerId) {
self.io.message(NetworkIoMessage::DisablePeer(peer))
.unwrap_or_else(|e| warn!("Error sending network IO message: {:?}", e));