Skip to content

Commit 1240e0d

Browse files
committed
Fix use cli instead of cargo run
1 parent 93d61ee commit 1240e0d

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

batcher/aligned/send_proof_with_random_address.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ echo "Sending $REPETITIONS $PROOF_TYPE proof/s to the batcher"
3030
echo "Batcher in $NETWORK and endpoint at $RPC_URL"
3131

3232
if [[ $PROOF_TYPE == "sp1" ]]; then
33-
cargo run --release -- submit \
33+
aligned submit \
3434
--proving_system SP1 \
3535
--proof ../../scripts/test_files/sp1/sp1_fibonacci_4_1_3.proof \
3636
--vm_program ../../scripts/test_files/sp1/sp1_fibonacci_4_1_3.elf \
@@ -40,7 +40,7 @@ if [[ $PROOF_TYPE == "sp1" ]]; then
4040
--network $NETWORK
4141

4242
elif [[ $PROOF_TYPE == "groth16" ]]; then
43-
cargo run --release -- submit \
43+
aligned submit \
4444
--proving_system Groth16Bn254 \
4545
--proof ../../scripts/test_files/gnark_groth16_bn254_script/groth16.proof \
4646
--public_input ../../scripts/test_files/gnark_groth16_bn254_script/groth16.pub \
@@ -51,7 +51,7 @@ elif [[ $PROOF_TYPE == "groth16" ]]; then
5151
--network $NETWORK
5252

5353
elif [[ $PROOF_TYPE == "plonk" ]]; then
54-
cargo run --release -- submit \
54+
aligned submit \
5555
--proving_system GnarkPlonkBn254 \
5656
--proof ../../scripts/test_files/gnark_plonk_bn254_script/plonk.proof \
5757
--public_input ../../scripts/test_files/gnark_plonk_bn254_script/plonk_pub_input.pub \
@@ -62,7 +62,7 @@ elif [[ $PROOF_TYPE == "plonk" ]]; then
6262
--network $NETWORK
6363

6464
elif [[ $PROOF_TYPE == "risc0" ]]; then
65-
cargo run --release -- submit \
65+
aligned submit \
6666
--proving_system Risc0 \
6767
--proof ../../scripts/test_files/risc_zero/fibonacci_proof_generator/risc_zero_fibonacci_2_0.proof \
6868
--vm_program ../../scripts/test_files/risc_zero/fibonacci_proof_generator/fibonacci_id_2_0.bin \

0 commit comments

Comments
 (0)