From 8da4002df3e38897cf475fa46431c92bbd47ca34 Mon Sep 17 00:00:00 2001 From: Jordan Hrycaj Date: Fri, 13 Jan 2023 19:55:16 +0000 Subject: [PATCH] Update eth/6? messages Get/PooledTransactions (#1415) why: There non-existent txs must be skipped. --- nimbus/sync/handlers.nim | 1 - 1 file changed, 1 deletion(-) diff --git a/nimbus/sync/handlers.nim b/nimbus/sync/handlers.nim index 6f3a81a0b..51b2e1298 100644 --- a/nimbus/sync/handlers.nim +++ b/nimbus/sync/handlers.nim @@ -392,7 +392,6 @@ method getPooledTxs*(ctx: EthWireRef, hashes: openArray[Hash256]): seq[Transacti if res.isOk: result.add res.value.tx else: - result.add Transaction() trace "handlers.getPooledTxs: tx not found", txHash method getBlockBodies*(ctx: EthWireRef, hashes: openArray[Hash256]): seq[BlockBody] {.gcsafe.} =