From ddd8be259050a5d4c0819c5a77a2f4e53d0dc270 Mon Sep 17 00:00:00 2001 From: John Guibas Date: Mon, 3 Jun 2024 00:32:29 -0700 Subject: [PATCH] fix --- core/src/stark/chip.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/stark/chip.rs b/core/src/stark/chip.rs index f184a33c5d..7248e73a46 100644 --- a/core/src/stark/chip.rs +++ b/core/src/stark/chip.rs @@ -78,9 +78,6 @@ where air.name(), nb_byte_sends + nb_byte_receives ); - if nb_byte_sends + nb_byte_receives > 1 << 11 { - panic!("too many byte interactions : {}", air.name()); - } let mut max_constraint_degree = get_max_constraint_degree(&air, air.preprocessed_width(), PROOF_MAX_NUM_PVS);