From b4bc3b3c3586de69267b766d18b4ee2c762bcdc0 Mon Sep 17 00:00:00 2001
From: meowsbits <45600330+meowsbits@users.noreply.github.com>
Date: Wed, 20 Nov 2019 09:08:07 -0500
Subject: [PATCH] tests: enable TransactionTests Istanbul case (#20337)

---
 tests/transaction_test_util.go | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/transaction_test_util.go b/tests/transaction_test_util.go
index 85bf1fb0b..7aa167292 100644
--- a/tests/transaction_test_util.go
+++ b/tests/transaction_test_util.go
@@ -80,8 +80,7 @@ func (tt *TransactionTest) Run(config *params.ChainConfig) error {
 		{"EIP158", types.NewEIP155Signer(config.ChainID), tt.EIP158, true, false},
 		{"Byzantium", types.NewEIP155Signer(config.ChainID), tt.Byzantium, true, false},
 		{"Constantinople", types.NewEIP155Signer(config.ChainID), tt.Constantinople, true, false},
-		//TODO! @holiman or @rjl493456442 : enable this after tests have been updated for Istanbul
-		//{"Istanbul", types.NewEIP155Signer(config.ChainID), tt.Istanbul, true, true},
+		{"Istanbul", types.NewEIP155Signer(config.ChainID), tt.Istanbul, true, true},
 	} {
 		sender, txhash, err := validateTx(tt.RLP, testcase.signer, testcase.isHomestead, testcase.isIstanbul)
 
-- 
GitLab