Skip to content

Commit

Permalink
Avoiding infinite recursion in trait implementation (#14261)
Browse files Browse the repository at this point in the history
Co-authored-by: Matthias Seitz <[email protected]>
  • Loading branch information
comfsrt and mattsse authored Feb 6, 2025
1 parent ad7dec3 commit 2ee7748
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/node/core/src/cli/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl<N: NetworkPrimitives> RethNetworkConfig for reth_network::NetworkManager<N>
}

fn secret_key(&self) -> secp256k1::SecretKey {
self.secret_key()
Self::secret_key(self)
}
}

Expand Down

0 comments on commit 2ee7748

Please sign in to comment.