mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 07:37:20 +00:00
core/rawdb: fix typo (#24289)
This commit is contained in:
parent
78f13a3a57
commit
29cb5deea3
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue