core/rawdb: fix typo (#24289)

pull/24298/head
Marius van der Wijden 3 years ago committed by GitHub
parent 78f13a3a57
commit 29cb5deea3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      core/rawdb/accessors_state.go

@ -47,7 +47,7 @@ func ReadCode(db ethdb.KeyValueReader, hash common.Hash) []byte {
if len(data) != 0 {
return data
}
data, _ := db.Get(hash[:])
data, _ = db.Get(hash[:])
return data
}

Loading…
Cancel
Save