Skip to content

Commit

Permalink
chore: Trim client IVC block sizes to fit e2e test (#7783)
Browse files Browse the repository at this point in the history
Trimmed client IVC block sizes to more closely reflect e2e sizes
  • Loading branch information
sirasistant authored Aug 6, 2024
1 parent 7572baf commit 641229e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,16 +81,16 @@ template <typename FF_> class MegaArith {
struct E2eStructuredBlockSizes : public MegaTraceBlocks<uint32_t> {
E2eStructuredBlockSizes()
{
this->ecc_op = 1 << 10;
this->pub_inputs = 30000;
this->arithmetic = 600000;
this->delta_range = 140000;
this->elliptic = 600000;
this->aux = 1400000;
this->lookup = 460000;
this->busread = 1 << 7;
this->ecc_op = 1 << 9;
this->pub_inputs = 4000;
this->arithmetic = 200000;
this->delta_range = 25000;
this->elliptic = 80000;
this->aux = 100000;
this->lookup = 200000;
this->busread = 10;
this->poseidon_external = 30000;
this->poseidon_internal = 170000;
this->poseidon_internal = 150000;
}
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1417,6 +1417,7 @@ mod tests {
next_slot: 0,
next_index: 0,
};

builder.pre_existing_public_data[1] = PublicDataTreeLeafPreimage {
slot: 1,
value: initial_balance,
Expand Down

0 comments on commit 641229e

Please sign in to comment.