mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 02:10:46 +00:00
core/rawdb: fix freezer metadata log field ordering (#35246)
This commit is contained in:
parent
eccd239a29
commit
11524ba075
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ func decodeV2(file *os.File) *freezerTableMeta {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if o.Offset > math.MaxInt64 {
|
if o.Offset > math.MaxInt64 {
|
||||||
log.Error("Invalid flushOffset %d in freezer metadata", o.Offset, "file", file.Name())
|
log.Error("Invalid flushOffset %d in freezer metadata", "offset", o.Offset, "file", file.Name())
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
return &freezerTableMeta{
|
return &freezerTableMeta{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue