From 2f1522226ee39b62240a2f710881cd3368c2ca47 Mon Sep 17 00:00:00 2001 From: meows Date: Wed, 20 Nov 2019 07:37:46 -0500 Subject: [PATCH] tests: enable TransactionTests Istanbul case --- 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 85bf1fb0bd0d..7aa16729271b 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)