mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
core/rawdb: convert some comments to godoc convention (#21384)
This commit is contained in:
parent
9e04c5ec83
commit
ff90894636
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue