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) {