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 jagdeep sidhu committed Jan 28, 2022
1 parent af1d92f commit 8a04092
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 8a04092

Please sign in to comment.