diff --git a/kzg_prover/src/utils/csv_parser.rs b/kzg_prover/src/utils/csv_parser.rs index 7f025971..4f2403b0 100644 --- a/kzg_prover/src/utils/csv_parser.rs +++ b/kzg_prover/src/utils/csv_parser.rs @@ -63,15 +63,5 @@ pub fn parse_csv_to_entries, const N_ASSETS: usize, const N_BYTES entries[i] = entry; } - // Iterate through the balance accumulator and throw error if any balance is not in range 0, 2 ^ (8 * N_BYTES): - for balance in balances_acc { - if balance >= BigUint::from(2_usize).pow(8 * N_BYTES as u32) { - return Err( - "Accumulated balance is not in the expected range, proof generation will fail!" - .into(), - ); - } - } - Ok(()) }