File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,9 @@ x=$((nonce + 1)) # So we don't have any issues with nonce = 0
100100echo " Generating proof $x != 0, nonce: $nonce "
101101go run ./scripts/test_files/gnark_groth16_bn254_infinite_script/cmd/main.go $x
102102
103+ verification_data_dir=" ./aligned_verification_data_$x "
104+ mkdir -p $verification_data_dir
105+
103106# # Send Proof
104107echo " Submitting $REPETITIONS proofs $x != 0"
105108submit=$( aligned submit \
@@ -113,6 +116,7 @@ submit=$(aligned submit \
113116 --network $NETWORK \
114117 --max_fee 0.004ether \
115118 --random_address \
119+ --aligned_verification_data_path $verification_data_dir \
116120 2>&1 )
117121
118122echo " $submit "
@@ -221,6 +225,6 @@ send_slack_message "$slack_message"
221225
222226# # Remove Proof Data
223227rm -rf ./scripts/test_files/gnark_groth16_bn254_infinite_script/infinite_proofs/*
224- rm -rf ./aligned_verification_data/ *
228+ rm -rf ./aligned_verification_data_ $x
225229
226230exit 0
You can’t perform that action at this time.
0 commit comments