Fixed compiler warnings

This commit is contained in:
Jedrzej Stuczynski
2019-12-18 17:15:55 +00:00
parent eba2b1f4ea
commit 39a2b919ae
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -5,7 +5,6 @@ use crate::sockets::ws;
use crate::utils;
use crate::utils::topology::get_topology;
use futures::channel::{mpsc, oneshot};
use futures::future::join5;
use futures::select;
use futures::{SinkExt, StreamExt};
use sphinx::route::{Destination, DestinationAddressBytes, NodeAddressBytes};
+1 -1
View File
@@ -1,7 +1,7 @@
use crate::clients::InputMessage;
use futures::channel::{mpsc, oneshot};
use futures::channel::mpsc::{UnboundedReceiver, UnboundedSender};
use futures::{SinkExt, StreamExt, AsyncReadExt};
use futures::{SinkExt, StreamExt};
use serde::{Deserialize, Serialize};
use sphinx::route::Destination;
use std::net::SocketAddr;