Skip to content

Commit 96605c9

Browse files
authored
docs: fix missing eip links (#81)
1 parent 9085282 commit 96605c9

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

src/system/fill.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ use revm::primitives::TxEnv;
99
/// specified in the EIPs, but this can be overridden using the
1010
/// [`SystemTx::new_with_caller`] method.
1111
///
12-
///
13-
/// [`EIP-4788`]: https://eips.ethereum.org/EIPS/eip-4788
14-
/// [`EIP-7002`]: https://eips.ethereum.org/EIPS/eip-7002
15-
/// [`EIP-7251`]: https://eips.ethereum.org/EIPS/eip-7251
12+
/// [EIP-4788]: https://eips.ethereum.org/EIPS/eip-4788
13+
/// [EIP-7002]: https://eips.ethereum.org/EIPS/eip-7002
14+
/// [EIP-7251]: https://eips.ethereum.org/EIPS/eip-7251
1615
#[derive(Debug, Clone, PartialEq, Eq)]
1716
pub struct SystemTx {
1817
/// The target address of the system call.
@@ -25,9 +24,9 @@ pub struct SystemTx {
2524

2625
/// The system caller as specified in [EIP-4788], [EIP-7002], and [EIP-7251].
2726
///
28-
/// [`EIP-4788`]: https://eips.ethereum.org/EIPS/eip-4788
29-
/// [`EIP-7002`]: https://eips.ethereum.org/EIPS/eip-7002
30-
/// [`EIP-7251`]: https://eips.ethereum.org/EIPS/eip-7251
27+
/// [EIP-4788]: https://eips.ethereum.org/EIPS/eip-4788
28+
/// [EIP-7002]: https://eips.ethereum.org/EIPS/eip-7002
29+
/// [EIP-7251]: https://eips.ethereum.org/EIPS/eip-7251
3130
pub const DEFAULT_SYSTEM_CALLER: Address = address!("fffffffffffffffffffffffffffffffffffffffe");
3231

3332
impl SystemTx {

src/system/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ mod fill;
2424
pub use fill::{SystemTx, DEFAULT_SYSTEM_CALLER};
2525

2626
/// Helpers for Prague historical block hash [EIP-2935] system actions.
27+
///
28+
/// [EIP-2935]: https://eips.ethereum.org/EIPS/eip-2935
2729
pub mod eip2935;
2830

2931
/// Helpers for Cancun beacon root [EIP-4788] system actions.

0 commit comments

Comments
 (0)