From 69518485d202f762c15a4d1f31fe83b783b753b8 Mon Sep 17 00:00:00 2001 From: Camila Di Ielsi Date: Wed, 8 Oct 2025 14:59:57 -0300 Subject: [PATCH] refactor on sync target so it uses existing targets --- .gitignore | 2 ++ tooling/sync/Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f81e8f7dd66..37dce3a824a 100644 --- a/.gitignore +++ b/.gitignore @@ -17,6 +17,8 @@ tooling/ef_tests/state/runner_v2/success_report.txt tooling/reorgs/data +tooling/sync/logs/ + # Repos checked out by make target /hive/ ethereum-package/ diff --git a/tooling/sync/Makefile b/tooling/sync/Makefile index f12ba77cd85..298db9c01b1 100644 --- a/tooling/sync/Makefile +++ b/tooling/sync/Makefile @@ -58,7 +58,7 @@ ifndef SYNC_BLOCK_NUM endif # samply record --unstable-presymbolicate --save-only -- mkdir -p logs - make start-ethrex-$(NETWORK) >> ./logs/ethrex-sync-$(NETWORK)-$(EVM).log + make start-ethrex >> ./logs/ethrex-sync-$(NETWORK)-$(EVM).log flamegraph-main: ## Run flamegraph on main branch. SYNC_BLOCK_NUM environment variable required (for block to start from). If NETWORK environment variable is not provided, mainnet will be used as default. EVM can also be set to select the evm to use. Execution logs are output to log file.