mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 21:26:42 +00:00
Format freezerInfo struct field alignment
This commit is contained in:
parent
8d4dd2ae93
commit
b0efa6d15d
1 changed files with 5 additions and 5 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue