From 6f0827b5528386301edb8eedfa66962ae01d3055 Mon Sep 17 00:00:00 2001 From: Jeffery Walsh Date: Wed, 21 Aug 2024 17:00:45 -0700 Subject: [PATCH] log --- consensus/taiko/consensus.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/consensus/taiko/consensus.go b/consensus/taiko/consensus.go index 6f819c4e100d..58fd81ec147d 100644 --- a/consensus/taiko/consensus.go +++ b/consensus/taiko/consensus.go @@ -225,6 +225,9 @@ func (t *Taiko) FinalizeAndAssemble(chain consensus.ChainHeaderReader, header *t // Verify anchor transaction if len(txs) != 0 { // Transactions list might be empty when building empty payload. isAnchor, err := t.ValidateAnchorTx(txs[0], header) + + log.Info("ValidatorAnchorTx", "isAnchor", isAnchor, "err", err) + if err != nil { return nil, err }