mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 05:06:43 +00:00
core/rawdb: fix var name
This commit is contained in:
parent
fb2e88623d
commit
72c4769475
1 changed files with 2 additions and 2 deletions
|
|
@ -1128,8 +1128,8 @@ func (t *freezerTable) RetrieveBytes(item, offset, length uint64) ([]byte, error
|
||||||
}
|
}
|
||||||
index0, index1 := indices[0], indices[1]
|
index0, index1 := indices[0], indices[1]
|
||||||
|
|
||||||
itemStart, endLimit, fileId := index0.bounds(index1)
|
itemStart, itemLimit, fileId := index0.bounds(index1)
|
||||||
itemSize := endLimit - itemStart
|
itemSize := itemLimit - itemStart
|
||||||
|
|
||||||
dataFile, exist := t.files[fileId]
|
dataFile, exist := t.files[fileId]
|
||||||
if !exist {
|
if !exist {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue