Skip to content

Commit 4f02ce7

Browse files
uri-99entropidelictaturosati
authored
feat(operator): merkle root check (#595)
Co-authored-by: Mariano A. Nicolini <mariano.nicolini.91@gmail.com> Co-authored-by: Tatu <65305492+srosati@users.noreply.github.com>
1 parent 5cd32a9 commit 4f02ce7

12 files changed

Lines changed: 258 additions & 3909 deletions

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
run: make build_halo2_kzg_linux
2727
- name: Build Halo2-IPA bindings
2828
run: make build_halo2_ipa_linux
29+
- name: Build Merkle Tree bindings
30+
run: make build_merkle_tree_linux
2931
- name: Build operator
3032
run: go build operator/cmd/main.go
3133
- name: Build aggregator

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ build_all_ffi_macos: ## Build all FFIs for macOS
570570
@echo "Building all FFIs for macOS..."
571571
@$(MAKE) build_sp1_macos
572572
@$(MAKE) build_risc_zero_macos
573-
# @$(MAKE) build_merkle_tree_macos
573+
@$(MAKE) build_merkle_tree_macos
574574
@$(MAKE) build_halo2_ipa_macos
575575
@$(MAKE) build_halo2_kzg_macos
576576
@echo "All macOS FFIs built successfully."
@@ -579,7 +579,7 @@ build_all_ffi_linux: ## Build all FFIs for Linux
579579
@echo "Building all FFIs for Linux..."
580580
@$(MAKE) build_sp1_linux
581581
@$(MAKE) build_risc_zero_linux
582-
# @$(MAKE) build_merkle_tree_linux
582+
@$(MAKE) build_merkle_tree_linux
583583
@$(MAKE) build_halo2_ipa_linux
584584
@$(MAKE) build_halo2_kzg_linux
585585
@echo "All Linux FFIs built successfully."

0 commit comments

Comments
 (0)