From 2e9e14238d3e3e30660f6faac26006055808c5d1 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Thu, 7 May 2026 14:56:38 +0000 Subject: [PATCH] fix lint --- internal/era/execdb/reader.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/internal/era/execdb/reader.go b/internal/era/execdb/reader.go index b0423005c3..a8fbb67315 100644 --- a/internal/era/execdb/reader.go +++ b/internal/era/execdb/reader.go @@ -388,11 +388,11 @@ func (e *Era) indexOffset(n uint64, component componentType) (int64, error) { // metadata contains the information about the era file that is written into the file. type metadata struct { - start uint64 // start block number - count uint64 // number of blocks in the era - components uint64 // number of slots per block in the index - layout map[componentType]int // component → slot index, derived from on-disk type tags - length int64 // length of the file in bytes + start uint64 // start block number + count uint64 // number of blocks in the era + components uint64 // number of slots per block in the index + layout map[componentType]int // component → slot index, derived from on-disk type tags + length int64 // length of the file in bytes } // componentType identifies a kind of per-block entry (header, body, etc.).