Skip to content

Commit

Permalink
Skip CheckEIP1559 e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
goran-ethernal committed Feb 12, 2024
1 parent 7df9bd4 commit 39dc35d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions e2e-polybft/e2e/consensus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import (
"bytes"
"fmt"
"math/big"
"os"
"path"
"path/filepath"
"strconv"
"sync"
"testing"
Expand All @@ -27,6 +29,20 @@ import (
"github.com/0xPolygon/polygon-edge/types"
)

func init() {
wd, err := os.Getwd()
if err != nil {
return
}

parent := filepath.Dir(wd)
wd = filepath.Join(parent, "../artifacts/polygon-edge")
os.Setenv("EDGE_BINARY", wd)
os.Setenv("E2E_TESTS", "true")
os.Setenv("E2E_LOGS", "true")
os.Setenv("E2E_LOG_LEVEL", "debug")
}

var uint256ABIType = abi.MustNewType("tuple(uint256)")

func TestE2E_Consensus_Basic(t *testing.T) {
Expand Down Expand Up @@ -513,6 +529,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)

Expand Down

0 comments on commit 39dc35d

Please sign in to comment.