Skip to content

Commit 9b60486

Browse files
committed
Fix cd in proof
1 parent 1747ec2 commit 9b60486

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -511,11 +511,11 @@ batcher_send_burst_groth16: batcher/target/release/aligned
511511
@./batcher/aligned/send_burst_tasks.sh $(BURST_SIZE) $(START_COUNTER)
512512

513513
batcher_send_proof_with_random_address:
514-
@cd batcher/aligned && ./send_proof_with_random_address.sh
514+
@cd batcher/aligned/ && ./send_proof_with_random_address.sh
515515

516516

517517
batcher_send_burst_with_random_address:
518-
@cd batcher/aligned && ./send_burst_with_random_address.sh
518+
@cd batcher/aligned/ && ./send_burst_with_random_address.sh
519519

520520
__TASK_SENDER__:
521521
BURST_TIME_SECS ?= 3

batcher/aligned/send_proof_with_random_address.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ 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-
cd batcher/aligned/
3433
cargo run --release -- submit \
3534
--proving_system SP1 \
3635
--proof ../../scripts/test_files/sp1/sp1_fibonacci_4_1_3.proof \
@@ -41,7 +40,6 @@ if [[ $PROOF_TYPE == "sp1" ]]; then
4140
--network $NETWORK
4241

4342
elif [[ $PROOF_TYPE == "groth16" ]]; then
44-
cd batcher/aligned/
4543
cargo run --release -- submit \
4644
--proving_system Groth16Bn254 \
4745
--proof ../../scripts/test_files/gnark_groth16_bn254_script/groth16.proof \
@@ -53,7 +51,6 @@ elif [[ $PROOF_TYPE == "groth16" ]]; then
5351
--network $NETWORK
5452

5553
elif [[ $PROOF_TYPE == "plonk" ]]; then
56-
cd batcher/aligned/
5754
cargo run --release -- submit \
5855
--proving_system GnarkPlonkBn254 \
5956
--proof ../../scripts/test_files/gnark_plonk_bn254_script/plonk.proof \
@@ -65,7 +62,6 @@ elif [[ $PROOF_TYPE == "plonk" ]]; then
6562
--network $NETWORK
6663

6764
elif [[ $PROOF_TYPE == "risc0" ]]; then
68-
cd batcher/aligned/
6965
cargo run --release -- submit \
7066
--proving_system Risc0 \
7167
--proof ../../scripts/test_files/risc_zero/fibonacci_proof_generator/risc_zero_fibonacci_2_0.proof \

0 commit comments

Comments
 (0)