Skip to content

Commit

Permalink
chore: add convenience trait bounds (paradigmxyz#5131)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Oct 22, 2023
1 parent 82bffbf commit 0088ba4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/reth/src/cli/components.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl<T> 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
Expand Down

0 comments on commit 0088ba4

Please sign in to comment.