From 19873a9b75f37e386006785c694db720257d14c5 Mon Sep 17 00:00:00 2001 From: nomaxg Date: Wed, 29 Nov 2023 15:32:43 -0500 Subject: [PATCH] remove redundant makefile command, remove log --- Makefile | 8 -------- staker/block_validator.go | 2 -- 2 files changed, 10 deletions(-) diff --git a/Makefile b/Makefile index af2c3d94af..45deca9004 100644 --- a/Makefile +++ b/Makefile @@ -332,14 +332,6 @@ contracts/test/prover/proofs/%.json: $(arbitrator_cases)/%.wasm $(arbitrator_pro go run solgen/gen.go @touch $@ -.make/generate-hotshot-binding: - forge build --root espresso-sequencer --out ../out --extra-output-files abi - mkdir -p solgen/go/espressogen/hotshot - mv ./out/HotShot.sol/HotShot.abi.json ./solgen/go/espressogen/hotshot - rm -rf out - abigen --abi ./solgen/go/espressogen/hotshot/HotShot.abi.json --pkg hotshot --out ./solgen/go/espressogen/hotshot/hotshot.go - rm ./solgen/go/espressogen/hotshot/HotShot.abi.json - .make/solidity: $(DEP_PREDICATE) contracts/src/*/*.sol .make/yarndeps $(ORDER_ONLY_PREDICATE) .make yarn --cwd contracts build @touch $@ diff --git a/staker/block_validator.go b/staker/block_validator.go index e2b86e3b44..ba8b188c9a 100644 --- a/staker/block_validator.go +++ b/staker/block_validator.go @@ -704,8 +704,6 @@ validationsLoop: } if currentStatus == Prepared { input, err := validationStatus.Entry.ToInput() - log.Info("Here is the prepared validation input", "prepared length", len(input.BatchInfo), "hotshot commitment", input.BatchInfo[0].HotShotCommitment, "first batch number", input.BatchInfo[0].Number) - log.Info("Using espresso", "espresso", v.config().Espresso) if err != nil && ctx.Err() == nil { v.possiblyFatal(fmt.Errorf("%w: error preparing validation", err)) continue