Skip to content

Commit a27148c

Browse files
committed
fmt
1 parent 37f6641 commit a27148c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

prover/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,8 +673,7 @@ pub fn verify_with_options(
673673
{
674674
use crate::tables::page::DEFAULT_PAGE_SIZE;
675675
use executor::vm::memory::MAX_PRIVATE_INPUT_SIZE;
676-
let max_pages =
677-
(MAX_PRIVATE_INPUT_SIZE as usize + 4).div_ceil(DEFAULT_PAGE_SIZE) + 1;
676+
let max_pages = (MAX_PRIVATE_INPUT_SIZE as usize + 4).div_ceil(DEFAULT_PAGE_SIZE) + 1;
678677
if vm_proof.num_private_input_pages > max_pages {
679678
return Err(Error::InvalidTableCounts(format!(
680679
"num_private_input_pages ({}) exceeds max ({max_pages})",

0 commit comments

Comments
 (0)