Skip to content

Commit 01f60f4

Browse files
committed
chore: better proof aggregator makefile targets
1 parent 1b8873a commit 01f60f4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ is_aggregator_set:
158158
exit 1; \
159159
fi
160160

161-
start_proof_aggregator_local: is_aggregator_set ## Start the proof aggregator locally using Mock Verifier Contract
161+
start_proof_aggregator_dev: is_aggregator_set ## Starts proof aggregator with mock proofs (DEV mode)
162162
RISC0_DEV_MODE=1 cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features $(AGGREGATOR) -- config-files/config-proof-aggregator-mock.yaml
163163

164-
start_proof_aggregator_local_with_proving: is_aggregator_set ## Start the proof aggregator locally using SP1 Verifier Contract
164+
start_proof_aggregator: is_aggregator_set ## Starts proof aggregator with proving activated
165165
cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,$(AGGREGATOR) -- config-files/config-proof-aggregator.yaml
166166

167-
start_proof_aggregator_local_with_proving_gpu: is_aggregator_set ## Start the proof aggregator locally using SP1 Verifier Contract
167+
start_proof_aggregator_gpu: is_aggregator_set ## Starts proof aggregator with proving + GPU acceleration (CUDA)
168168
SP1_PROVER=cuda cargo run --manifest-path ./aggregation_mode/Cargo.toml --release --features prove,gpu,$(AGGREGATOR) -- config-files/config-proof-aggregator.yaml
169169

170170
_AGGREGATOR_:
@@ -713,7 +713,7 @@ build_aligned_contracts:
713713

714714
show_aligned_error_codes:
715715
@echo "\nAlignedLayerServiceManager errors:"
716-
@cd contracts && forge inspect src/core/IAlignedLayerServiceManager.sol:IAlignedLayerServiceManager errors
716+
@cd contracts && forge inspect src/core/IAligedLayerServiceManager.sol:IAlignedLayerServiceManager errors
717717
@echo "\nBatcherPaymentService errors:"
718718
@cd contracts && forge inspect src/core/BatcherPaymentService.sol:BatcherPaymentService errors
719719

0 commit comments

Comments
 (0)