From 0088ba4553954ded0630507f6b793cb464f91a58 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sun, 22 Oct 2023 18:32:05 +0200 Subject: [PATCH] chore: add convenience trait bounds (#5131) --- bin/reth/src/cli/components.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reth/src/cli/components.rs b/bin/reth/src/cli/components.rs index a550dfb2c..7a810aa03 100644 --- a/bin/reth/src/cli/components.rs +++ b/bin/reth/src/cli/components.rs @@ -41,7 +41,7 @@ impl FullProvider for T where } /// The trait that is implemented for the Node command. -pub trait RethNodeComponents { +pub trait RethNodeComponents: Clone + Send + Sync + 'static { /// The Provider type that is provided by the not itself type Provider: FullProvider; /// The transaction pool type