mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-15 04:26:37 +00:00
core/rawdb: fix error message fields in ReadLogs (#24104)
This commit is contained in:
parent
b3b8b268eb
commit
adec878c1d
1 changed files with 1 additions and 1 deletions
|
|
@ -714,7 +714,7 @@ func ReadLogs(db ethdb.Reader, hash common.Hash, number uint64, config *params.C
|
||||||
if logs := readLegacyLogs(db, hash, number, config); logs != nil {
|
if logs := readLegacyLogs(db, hash, number, config); logs != nil {
|
||||||
return logs
|
return logs
|
||||||
}
|
}
|
||||||
log.Error("Invalid receipt array RLP", "hash", "err", err)
|
log.Error("Invalid receipt array RLP", "hash", hash, "err", err)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue