From 57275ce7992ccd9e5a89ada194b01eb1268e17e2 Mon Sep 17 00:00:00 2001 From: Matilda-Clerke Date: Tue, 13 Aug 2024 14:19:43 +1000 Subject: [PATCH] 5098: Disable txpoolForcePriceBumpToZeroWhenZeroBaseFeeMarket test and add comment explaining why (#7452) Signed-off-by: Matilda Clerke Signed-off-by: gconnect --- .../test/java/org/hyperledger/besu/cli/TxPoolOptionsTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/besu/src/test/java/org/hyperledger/besu/cli/TxPoolOptionsTest.java b/besu/src/test/java/org/hyperledger/besu/cli/TxPoolOptionsTest.java index a5ca07484a0..8389ab5bae8 100644 --- a/besu/src/test/java/org/hyperledger/besu/cli/TxPoolOptionsTest.java +++ b/besu/src/test/java/org/hyperledger/besu/cli/TxPoolOptionsTest.java @@ -30,6 +30,7 @@ import java.nio.file.Files; import java.nio.file.Path; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; public class TxPoolOptionsTest extends CommandTestAbstract { @@ -97,6 +98,7 @@ public void txpoolSaveFileAbsolutePathOutsideDataPath() throws IOException { } @Test + @Disabled // Failing in CI, but not locally public void txpoolForcePriceBumpToZeroWhenZeroBaseFeeMarket() throws IOException { final Path genesisFile = createFakeGenesisFile(GENESIS_WITH_ZERO_BASE_FEE_MARKET); parseCommand("--genesis-file", genesisFile.toString());