diff --git a/e2e_test/e2e_test.go b/e2e_test/e2e_test.go index 74c8f610d7..512a5f72cd 100644 --- a/e2e_test/e2e_test.go +++ b/e2e_test/e2e_test.go @@ -241,7 +241,6 @@ func TestRPCDynamicTxGasPriceWithBigFeeCap(t *testing.T) { // to know the exactly gasPrice expent in a dynamic tx, depends on consuming the // GasPriceMinimum contract func TestRPCDynamicTxGasPriceWithState(t *testing.T) { - t.Skip() // Flaky (deadline exceeded) ac := test.AccountConfig(3, 2) gc, ec, err := test.BuildConfig(ac) ec.TxLookupLimit = 0 @@ -250,7 +249,7 @@ func TestRPCDynamicTxGasPriceWithState(t *testing.T) { network, shutdown, err := test.NewNetwork(ac, gc, ec) require.NoError(t, err) defer shutdown() - ctx, cancel := context.WithTimeout(context.Background(), time.Second*30) + ctx, cancel := context.WithTimeout(context.Background(), time.Second*90) defer cancel() accounts := test.Accounts(ac.DeveloperAccounts(), gc.ChainConfig()) @@ -300,7 +299,6 @@ func TestRPCDynamicTxGasPriceWithState(t *testing.T) { // to know the exactly gasPrice expent in a dynamic tx, depends on consuming the // GasPriceMinimum contract func TestRPCDynamicTxGasPriceWithoutState(t *testing.T) { - t.Skip() // Flaky (deadline exceeded) ac := test.AccountConfig(3, 2) gc, ec, err := test.BuildConfig(ac) ec.TrieDirtyCache = 5 @@ -308,7 +306,7 @@ func TestRPCDynamicTxGasPriceWithoutState(t *testing.T) { network, shutdown, err := test.NewNetwork(ac, gc, ec) require.NoError(t, err) defer shutdown() - ctx, cancel := context.WithTimeout(context.Background(), time.Second*30) + ctx, cancel := context.WithTimeout(context.Background(), time.Second*90) defer cancel() accounts := test.Accounts(ac.DeveloperAccounts(), gc.ChainConfig())