core/rawdb: convert some comments to godoc convention (#21384)

This commit is contained in:
meowsbits 2020-07-29 14:53:59 -05:00 committed by GitHub
parent 9e04c5ec83
commit ff90894636
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -221,7 +221,7 @@ func (f *freezer) AppendAncient(number uint64, hash, header, body, receipts, td
return nil
}
// Truncate discards any recent data above the provided threshold number.
// TruncateAncients discards any recent data above the provided threshold number.
func (f *freezer) TruncateAncients(items uint64) error {
if atomic.LoadUint64(&f.frozen) <= items {
return nil
@ -235,7 +235,7 @@ func (f *freezer) TruncateAncients(items uint64) error {
return nil
}
// sync flushes all data tables to disk.
// Sync flushes all data tables to disk.
func (f *freezer) Sync() error {
var errs []error
for _, table := range f.tables {