We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75da1b7 commit e261bd8Copy full SHA for e261bd8
1 file changed
batcher/aligned/src/main.rs
@@ -540,8 +540,8 @@ async fn main() -> Result<(), AlignedError> {
540
// If random_address flag is enabled, change every address with a random value
541
if submit_args.random_address {
542
info!("Randomizing proof generator address for each proof...");
543
- for i in 0..repetitions {
544
- verification_data_arr[i].proof_generator_addr = Address::random();
+ for verification_data in verification_data_arr.iter_mut() {
+ verification_data.proof_generator_addr = Address::random();
545
}
546
547
0 commit comments