Skip to content

Commit

Permalink
Update stack.cairo
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjl10 authored Dec 20, 2024
1 parent 5caaf28 commit c2f6a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairo/kakarot-ssj/crates/evm/src/stack.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ impl StackImpl of StackTrait {
///
/// # Errors
///
/// If the stack length is less than than N, returns with a StackUnderflow error.
/// If the stack length is less than N, returns with a StackUnderflow error.
fn pop_n(ref self: Stack, mut n: usize) -> Result<Array<u256>, EVMError> {
ensure(!(n > self.len()), EVMError::StackUnderflow)?;
let mut popped_items = ArrayTrait::<u256>::new();
Expand Down

0 comments on commit c2f6a8b

Please sign in to comment.