Skip to content

Commit b40d351

Browse files
committed
update to bb nightly 20250723
1 parent c646209 commit b40d351

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

barretenberg/bb_rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bb_rs"
3-
version = "1.0.0-nightly.20250716"
3+
version = "1.0.0-nightly.20250723"
44
edition = "2021"
55
authors = ["Bartosz Nowak", "Théo Madzou"]
66

barretenberg/bb_rs/src/barretenberg_api/tests/acir.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ fn test_acir_get_circuit_size() {
55
let constraint_system_buf = [1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 49, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 51, 48, 54, 52, 52, 101, 55, 50, 101, 49, 51, 49, 97, 48, 50, 57, 98, 56, 53, 48, 52, 53, 98, 54, 56, 49, 56, 49, 53, 56, 53, 100, 50, 56, 51, 51, 101, 56, 52, 56, 55, 57, 98, 57, 55, 48, 57, 49, 52, 51, 101, 49, 102, 53, 57, 51, 102, 48, 48, 48, 48, 48, 48, 48, 2, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 0, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
66
let circuit_sizes = unsafe { acir::get_circuit_sizes(&constraint_system_buf, true) };
77
println!("{:?}", circuit_sizes);
8-
assert_eq!(circuit_sizes.total, 3558);
8+
assert_eq!(circuit_sizes.total, 3560);
99
assert_eq!(circuit_sizes.subgroup, 4096);
1010
}

barretenberg/cpp/src/barretenberg/bb/cli.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ int parse_and_run_cli_command(int argc, char* argv[])
589589
}
590590
debug_logging = flags.debug;
591591
verbose_logging = debug_logging || flags.verbose;
592-
slow_low_memory = flags.slow_low_memory;
592+
set_slow_low_memory(flags.slow_low_memory);
593593

594594
print_active_subcommands(app);
595595
info("Scheme is: ", flags.scheme, ", num threads: ", get_num_cpus());

0 commit comments

Comments
 (0)