From b2bd5d3a44d9f4c0a47e3c0ea3a0a39d028a14ff Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Wed, 8 Jan 2025 17:40:32 -0500 Subject: [PATCH] Remove Debug bound on tributary::P2p --- coordinator/tributary/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coordinator/tributary/src/lib.rs b/coordinator/tributary/src/lib.rs index 3e946381..2e4a6115 100644 --- a/coordinator/tributary/src/lib.rs +++ b/coordinator/tributary/src/lib.rs @@ -129,7 +129,7 @@ pub trait ReadWrite: Sized { } } -pub trait P2p: 'static + Send + Sync + Clone + Debug { +pub trait P2p: 'static + Send + Sync + Clone { /// Broadcast a message to all other members of the Tributary with the specified genesis. /// /// The Tributary will re-broadcast consensus messages on a fixed interval to ensure they aren't