Drop obsolete Clone bound on Node

Signed-off-by: Lee Smet <lee.smet@hotmail.com>
This commit is contained in:
Lee Smet
2024-05-14 11:45:41 +02:00
parent bbce3ebee0
commit 24eee95d83
+1 -4
View File
@@ -79,10 +79,7 @@ pub struct Config<M> {
}
/// The Node is the main structure in mycelium. It governs the entire data flow.
pub struct Node<M>
where
M: Clone,
{
pub struct Node<M> {
router: router::Router<M>,
peer_manager: peer_manager::PeerManager<M>,
#[cfg(feature = "message")]