mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-30 02:07:36 +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
|
||||
}
|
||||
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 &freezerTableMeta{
|
||||
|
|
|
|||
Loading…
Reference in a new issue