good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit ff908946 authored by meowsbits's avatar meowsbits Committed by GitHub
Browse files

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

parent 9e04c5ec
No related branches found
No related tags found
No related merge requests found
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment