From f97ca77cba28e6b9da11a68db8472f486e4bcb88 Mon Sep 17 00:00:00 2001 From: Joshua Kim <20001595+joshua-kim@users.noreply.github.com> Date: Wed, 9 Aug 2023 17:16:30 -0400 Subject: [PATCH] add debug log for dropped pending txs notifications --- plugin/evm/block_builder.go | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/evm/block_builder.go b/plugin/evm/block_builder.go index 5e6a69ba6b..fe80bf0145 100644 --- a/plugin/evm/block_builder.go +++ b/plugin/evm/block_builder.go @@ -111,6 +111,7 @@ func (b *blockBuilder) needToBuild() bool { func (b *blockBuilder) markBuilding() { // If the engine has not called BuildBlock, no need to send another message. if b.buildSent { + log.Debug("previous PendingTxs notification still pending in consensus") return } b.buildBlockTimer.Cancel() // Cancel any future attempt from the timer to send a PendingTxs message