From d220e4c8440940b30e1515f02c51f4144c1dbcca Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Thu, 18 Dec 2025 09:49:17 +0100 Subject: [PATCH] eth/handler: check hash against chain using in-mem cache only Signed-off-by: Csaba Kiraly --- eth/handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/handler.go b/eth/handler.go index d3d13e68e9..41a09818f6 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -184,7 +184,7 @@ func newHandler(config *handlerConfig) (*handler, error) { } chainTx := func(hash common.Hash) bool { // check on chain (no need to check limbo separately, as chain checks limbo too) - return h.chain.HasCanonicalTransaction(hash, false) + return h.chain.HasCanonicalTransaction(hash, true) } validateMeta := func(tx common.Hash, kind byte) error { if hasTx(tx) {