From 49aba77b49fb94a32445ddf6f29fcf5b7df27458 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sat, 14 Dec 2024 21:05:02 +0100 Subject: [PATCH] docs: fix docs --- crates/consensus/src/transaction/pooled.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/consensus/src/transaction/pooled.rs b/crates/consensus/src/transaction/pooled.rs index 461e6125..d3ee5943 100644 --- a/crates/consensus/src/transaction/pooled.rs +++ b/crates/consensus/src/transaction/pooled.rs @@ -21,8 +21,8 @@ use core::hash::{Hash, Hasher}; /// A response to `GetPooledTransactions`. This can include a typed signed transaction, but cannot /// include a deposit transaction or EIP-4844 transaction. /// -/// The difference between this and the [`OpTxEnvelope`](crate::OpTxEnvelope) is that this type -/// does not have the deposit transaction variant, which is not expected to be pooled. +/// The difference between this and the [`OpTxEnvelope`] is that this type does not have the deposit +/// transaction variant, which is not expected to be pooled. #[derive(Clone, Debug, PartialEq, Eq)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] #[cfg_attr(all(any(test, feature = "arbitrary"), feature = "k256"), derive(arbitrary::Arbitrary))]