From a709282c8729807781b45302ee8e87d235ca2d61 Mon Sep 17 00:00:00 2001 From: Stan Bondi Date: Fri, 16 Sep 2022 11:49:24 +0400 Subject: [PATCH] fix: stray clippy error (#4685) Description --- Stray clippy error fix from #4682 --- comms/core/examples/stress/node.rs | 2 +- comms/dht/examples/propagation/node.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comms/core/examples/stress/node.rs b/comms/core/examples/stress/node.rs index 1ac856b868..37c403c107 100644 --- a/comms/core/examples/stress/node.rs +++ b/comms/core/examples/stress/node.rs @@ -31,7 +31,7 @@ use tari_comms::{ pipeline::SinkService, protocol::{messaging::MessagingProtocolExtension, ProtocolNotification, Protocols}, tor, - tor::{HsFlags, TorIdentity}, + tor::TorIdentity, transports::{predicate::FalsePredicate, SocksConfig, TcpWithTorTransport}, CommsBuilder, CommsNode, diff --git a/comms/dht/examples/propagation/node.rs b/comms/dht/examples/propagation/node.rs index 6cbb8b7ebc..4c563aaa60 100644 --- a/comms/dht/examples/propagation/node.rs +++ b/comms/dht/examples/propagation/node.rs @@ -31,7 +31,7 @@ use tari_comms::{ pipeline::SinkService, protocol::{messaging::MessagingProtocolExtension, NodeNetworkInfo}, tor, - tor::{HsFlags, TorIdentity}, + tor::TorIdentity, CommsBuilder, CommsNode, NodeIdentity,