Skip to content

Commit

Permalink
core/rawdb: fix typo (ethereum#24289)
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusVanDerWijden authored and ValentinTrinque committed Jan 25, 2022
1 parent 2d434a1 commit 526a233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/rawdb/accessors_state.go
Expand Up @@ -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
}

Expand Down

0 comments on commit 526a233

Please sign in to comment.