mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
fix linter error
This commit is contained in:
parent
9606dbcb19
commit
8d2125e4fd
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ func ArchivedNodeResolver(offset, size uint64) ([]*Record, error) {
|
|||
var record Record
|
||||
err = stream.Decode(&record)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("error decoding rlp record from archive data: %w", err)
|
||||
return nil, fmt.Errorf("error decoding rlp record from archive data (offset=%d, size=%d): %w", offset, size, err)
|
||||
}
|
||||
records = append(records, &record)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue