From 9b11ac163ade09385699c8a930455f793091406b Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Fri, 14 Mar 2025 11:17:48 +0100 Subject: [PATCH] rm extra check --- tests/transaction_test_util.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/transaction_test_util.go b/tests/transaction_test_util.go index e38dced642..b2efabe82e 100644 --- a/tests/transaction_test_util.go +++ b/tests/transaction_test_util.go @@ -147,9 +147,6 @@ func (tt *TransactionTest) Run() error { if common.Address(*expected.Sender) != sender { return fmt.Errorf("sender mismatch: got %x, want %x", sender, expected.Sender) } - if hash != common.Hash(*expected.Hash) { - return fmt.Errorf("hash mismatch: got %x, want %x", hash, expected.Hash) - } if uint64(expected.IntrinsicGas) != gas { return fmt.Errorf("intrinsic gas mismatch: got %d, want %d", gas, uint64(expected.IntrinsicGas)) }