From 3cb2e447246ce898d14cf8c0dc32bc64ba2cba21 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Thu, 18 Apr 2024 09:35:08 +0200 Subject: [PATCH] eth/catalyst: fix TestEth2PrepareAndGetPayload --- eth/catalyst/api_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/catalyst/api_test.go b/eth/catalyst/api_test.go index 294c84e997..b8645d6be4 100644 --- a/eth/catalyst/api_test.go +++ b/eth/catalyst/api_test.go @@ -189,7 +189,7 @@ func TestEth2PrepareAndGetPayload(t *testing.T) { // Put the 10th block's tx in the pool and produce a new block txs := blocks[9].Transactions() - ethservice.TxPool().Add(txs, true, false) + ethservice.TxPool().Add(txs, true, true) blockParams := engine.PayloadAttributes{ Timestamp: blocks[8].Time() + 5, }