Skip to content

Commit 4102ecd

Browse files
authored
chore: fix constants module typo (#1801)
1 parent 47169b3 commit 4102ecd

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

crates/bytecode/src/eof/verification.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::{
44
utils::{read_i16, read_u16},
55
};
66
use primitives::{Bytes, MAX_INITCODE_SIZE};
7-
use specification::constantans::STACK_LIMIT;
7+
use specification::constants::STACK_LIMIT;
88

99
use core::{convert::identity, mem};
1010
use std::{borrow::Cow, fmt, vec, vec::Vec};

crates/specification/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#[cfg(not(feature = "std"))]
66
extern crate alloc as std;
77

8-
pub mod constantans;
8+
pub mod constants;
99
pub mod eip170;
1010
pub mod eip2;
1111
pub mod eip2930;

0 commit comments

Comments
 (0)