We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cce15e1 commit 288251cCopy full SHA for 288251c
1 file changed
program-tests/account-compression-test/tests/address_merkle_tree_tests.rs
@@ -1042,9 +1042,10 @@ async fn update_address_merkle_tree_wrap_around(
1042
.unwrap();
1043
1044
// Wrap around the indexed changelog with conflicting elements.
1045
+ // Note: address insertions are limited to 8 per instruction
1046
let mut rng = thread_rng();
- for _ in (0..merkle_tree_config.address_changelog_size).step_by(10) {
1047
- let addresses: Vec<[u8; 32]> = (0..10)
+ for _ in (0..merkle_tree_config.address_changelog_size).step_by(8) {
1048
+ let addresses: Vec<[u8; 32]> = (0..8)
1049
.map(|_| {
1050
Fr::rand(&mut rng)
1051
.into_bigint()
0 commit comments