Skip to content

Commit

Permalink
chore: fix constants module typo (#1801)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Sep 24, 2024
1 parent 47169b3 commit 4102ecd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/bytecode/src/eof/verification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use crate::{
utils::{read_i16, read_u16},
};
use primitives::{Bytes, MAX_INITCODE_SIZE};
use specification::constantans::STACK_LIMIT;
use specification::constants::STACK_LIMIT;

use core::{convert::identity, mem};
use std::{borrow::Cow, fmt, vec, vec::Vec};
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/specification/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#[cfg(not(feature = "std"))]
extern crate alloc as std;

pub mod constantans;
pub mod constants;
pub mod eip170;
pub mod eip2;
pub mod eip2930;
Expand Down

0 comments on commit 4102ecd

Please sign in to comment.