From 8f0b5083f461fa6a0eff46c5a8aa291c10be7c87 Mon Sep 17 00:00:00 2001 From: AlexandreBelling Date: Fri, 13 Sep 2024 10:04:37 +0200 Subject: [PATCH] remove corset flags from commands (#28) --- prover/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prover/Makefile b/prover/Makefile index 4df026376..739011ea4 100644 --- a/prover/Makefile +++ b/prover/Makefile @@ -78,10 +78,10 @@ bin/controller: ## ## Prover (setup and prove) ## -bin/prover: zkevm/arithmetization/zkevm.bin +bin/prover: mkdir -p bin rm -f $@ - $(CORSET_FLAGS) go build -o $@ ./cmd/prover + go build -o $@ ./cmd/prover ## ## Compiles the state-manager inspector @@ -105,7 +105,7 @@ bin/compression-aggregation-sample: bin/checker: zkevm/arithmetization/zkevm.bin mkdir -p bin rm -f $@ - $(CORSET_FLAGS) go build -o $@ ./cmd/dev-tools/corset-checker + go build -o $@ ./cmd/dev-tools/corset-checker ## ## Build the prover docker image