Unverified Commit 29cb5dee authored by Marius van der Wijden's avatar Marius van der Wijden Committed by GitHub

core/rawdb: fix typo (#24289)

parent 78f13a3a
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment