core/state, light: remove unused StateObject.initCode

This commit is contained in:
Gustav Simonsson
2016-09-19 02:07:20 -04:00
parent 88b012ad3b
commit b6b17e5648
3 changed files with 0 additions and 9 deletions

View File

@ -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 {