core/rawdb/eradb: remove a comment

This commit is contained in:
Felix Lange 2025-05-14 11:52:11 +02:00 committed by lightclient
parent b04157fafe
commit d31daab1dc
No known key found for this signature in database
GPG key ID: 657913021EF45A6A

View file

@ -87,7 +87,6 @@ func (db *Store) Close() {
// GetRawBody returns the raw body for a given block number.
func (db *Store) GetRawBody(number uint64) ([]byte, error) {
// Lookup the table by epoch.
epoch := number / uint64(era.MaxEra1Size)
entry := db.getEraByEpoch(epoch)
if entry.err != nil {