Skip to content

Commit 1c185d1

Browse files
loopy811zerosnacks
andauthored
docs: edited a dead link in precompiles.rs (#10049)
Update dead link in `precompiles.rs` Co-authored-by: zerosnacks <[email protected]>
1 parent f3be628 commit 1c185d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/evm/core/src/precompiles.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub const PRECOMPILES: &[Address] = &[
4949
ODYSSEY_P256_ADDRESS,
5050
];
5151

52-
/// [EIP-7212](https://github.com/ethereum/RIPs/blob/master/RIPS/rip-7212.md) secp256r1 precompile address on Odyssey.
52+
/// [RIP-7212](https://github.com/ethereum/RIPs/blob/master/RIPS/rip-7212.md) secp256r1 precompile address on Odyssey.
5353
///
5454
/// <https://github.com/ithacaxyz/odyssey/blob/482f4547631ae5c64ebea6a4b4ef93184a4abfee/crates/node/src/evm.rs#L35-L35>
5555
pub const ODYSSEY_P256_ADDRESS: Address = address!("0000000000000000000000000000000000000014");
@@ -68,6 +68,6 @@ pub fn p256_verify(input: &Bytes, gas_limit: u64) -> PrecompileResult {
6868
})
6969
}
7070

71-
/// [EIP-7212](https://eips.ethereum.org/EIPS/eip-7212#specification) secp256r1 precompile.
71+
/// [RIP-7212](https://github.com/ethereum/RIPs/blob/master/RIPS/rip-7212.md) secp256r1 precompile.
7272
pub const ODYSSEY_P256: PrecompileWithAddress =
7373
PrecompileWithAddress(ODYSSEY_P256_ADDRESS, Precompile::Standard(p256_verify));

0 commit comments

Comments
 (0)