From 281d1f69c4f304c5ff6033a264171dcda7a21e7a Mon Sep 17 00:00:00 2001 From: Goran Rojovic Date: Mon, 12 Feb 2024 08:49:58 +0100 Subject: [PATCH] Skip CheckEIP1559 e2e test --- e2e-polybft/e2e/consensus_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/e2e-polybft/e2e/consensus_test.go b/e2e-polybft/e2e/consensus_test.go index 5830b62436..0115d6bcb1 100644 --- a/e2e-polybft/e2e/consensus_test.go +++ b/e2e-polybft/e2e/consensus_test.go @@ -513,6 +513,8 @@ func TestE2E_Consensus_CustomRewardToken(t *testing.T) { // and check if balance of sender, receiver, burn contract and miner is updates correctly // in accordance with EIP-1559 specifications func TestE2E_Consensus_EIP1559Check(t *testing.T) { + t.Skip("TODO - since we removed burn from evm, this should be fixed after the burn solution") + sender, err := wallet.GenerateKey() require.NoError(t, err)