Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Okm165 committed Aug 22, 2024
1 parent d59bb53 commit 3ce5548
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/air/public_input.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,7 @@ fn verify_cairo1_public_input(public_input: @PublicInput) -> (felt252, felt252)

// 1. Program segment
assert(initial_pc == INITIAL_PC, 'Invalid initial_pc');
let program = memory
.extract_range_unchecked(0, memory.len() - output_len);
let program = memory.extract_range_unchecked(0, memory.len() - output_len);
let program_hash = poseidon_hash_span(program);

// 2. Output segment
Expand Down

0 comments on commit 3ce5548

Please sign in to comment.