mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-19 14:29:27 +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 {
|
if len(data) != 0 {
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
data, _ := db.Get(hash[:])
|
data, _ = db.Get(hash[:])
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue