Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions circuits/cpp/barretenberg/cpp/src/barretenberg/bb/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ using namespace barretenberg;
// based on memory constraints for UltraPlonk.
// However, since this CLI does not use WASM, we can increase the
// size.
uint32_t MAX_CIRCUIT_SIZE = 1 << 23;
uint32_t MAX_CIRCUIT_SIZE = 1 << 22;
std::string CRS_PATH = "./crs";
bool verbose = false;

Expand Down Expand Up @@ -333,4 +333,4 @@ int main(int argc, char* argv[])
std::cerr << err.what() << std::endl;
return 1;
}
}
}