Skip to content

Commit

Permalink
fix: broken link EIP-7212 evm.rs (#136)
Browse files Browse the repository at this point in the history
Hi! In this pull request, I fixed a broken link in the `evm.rs` file.
The old reference to `EIP-7212` was replaced with the correct link to
`RIP-7212`. Following
[EIP-7607](https://eips.ethereum.org/EIPS/eip-7607#considered-for-inclusion),
the link and label were updated to align with the correct RIP
specification.
  • Loading branch information
youyyytrok authored Jan 27, 2025
1 parent 5fc8fe8 commit 8fd1078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/node/src/evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use std::sync::Arc;
/// P256 verify precompile address.
pub const P256VERIFY_ADDRESS: u64 = 0x14;

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

Expand Down

0 comments on commit 8fd1078

Please sign in to comment.