From b0efa6d15d5ceea56c2268d93c8f2d69e5cd3cd6 Mon Sep 17 00:00:00 2001 From: rjl493456442 Date: Mon, 24 Nov 2025 21:08:04 +0800 Subject: [PATCH] Format freezerInfo struct field alignment --- core/rawdb/ancient_utils.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/rawdb/ancient_utils.go b/core/rawdb/ancient_utils.go index 26a86648e5..b374449ca8 100644 --- a/core/rawdb/ancient_utils.go +++ b/core/rawdb/ancient_utils.go @@ -31,11 +31,11 @@ type tableSize struct { // freezerInfo contains the basic information of the freezer. type freezerInfo struct { - name string // The identifier of freezer - head uint64 // The number of last stored item in the freezer - tail uint64 // The number of first stored item in the freezer - count uint64 // The number of stored items in the freezer - sizes []tableSize // The storage size per table + name string // The identifier of freezer + head uint64 // The number of last stored item in the freezer + tail uint64 // The number of first stored item in the freezer + count uint64 // The number of stored items in the freezer + sizes []tableSize // The storage size per table } // size returns the storage size of the entire freezer.