diff options
Diffstat (limited to 'core/state/state_test.go')
-rw-r--r-- | core/state/state_test.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/state/state_test.go b/core/state/state_test.go index 5a6cb0b50..69cf083cf 100644 --- a/core/state/state_test.go +++ b/core/state/state_test.go @@ -200,9 +200,6 @@ func compareStateObjects(so0, so1 *StateObject, t *testing.T) { if !bytes.Equal(so0.code, so1.code) { t.Fatalf("Code mismatch: have %v, want %v", so0.code, so1.code) } - if !bytes.Equal(so0.initCode, so1.initCode) { - t.Fatalf("InitCode mismatch: have %v, want %v", so0.initCode, so1.initCode) - } for k, v := range so1.storage { if so0.storage[k] != v { |