Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/precompile/src/modexp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ where
// cast exp len to the max size, it will fail later in gas calculation if it is too large.
let exp_len = usize::try_from(exp_len).unwrap_or(usize::MAX);

// for EIP-7823 we need to check size of imputs
// for EIP-7823 we need to check size of inputs
if OSAKA
&& (base_len > eip7823::INPUT_SIZE_LIMIT
|| mod_len > eip7823::INPUT_SIZE_LIMIT
Expand Down
Loading