chore: fix some typos (#2433)

This commit is contained in:
knowmost 2024-05-09 16:05:46 +08:00 committed by GitHub
parent 571ea2c4b9
commit 0c101e618a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

@ -409,7 +409,7 @@ func pruneBlock(ctx *cli.Context) error {
} }
if _, err := os.Stat(newAncientPath); err == nil { if _, err := os.Stat(newAncientPath); err == nil {
// No file lock found for old ancientDB but new ancientDB exsisted, indicating the geth was interrupted // No file lock found for old ancientDB but new ancientDB existed, indicating the geth was interrupted
// after old ancientDB removal, this happened after backup successfully, so just rename the new ancientDB // after old ancientDB removal, this happened after backup successfully, so just rename the new ancientDB
if err := blockpruner.AncientDbReplacer(); err != nil { if err := blockpruner.AncientDbReplacer(); err != nil {
log.Error("Failed to rename new ancient directory") log.Error("Failed to rename new ancient directory")

@ -402,7 +402,7 @@ func (p *BlockPruner) backUpOldDb(name string, cache, handles int, namespace str
var oldOffSet uint64 var oldOffSet uint64
if interrupt { if interrupt {
// The interrupt scecario within this function is specific for old and new ancientDB exsisted concurrently, // The interrupt scecario within this function is specific for old and new ancientDB existed concurrently,
// should use last version of offset for oldAncientDB, because current offset is // should use last version of offset for oldAncientDB, because current offset is
// actually of the new ancientDB_Backup, but what we want is the offset of ancientDB being backup. // actually of the new ancientDB_Backup, but what we want is the offset of ancientDB being backup.
oldOffSet = rawdb.ReadOffSetOfLastAncientFreezer(chainDb) oldOffSet = rawdb.ReadOffSetOfLastAncientFreezer(chainDb)

@ -110,7 +110,7 @@ type Config struct {
PipeCommit bool PipeCommit bool
RangeLimit bool RangeLimit bool
// Deprecated, use 'TransactionHistory' instead. // Deprecated: use 'TransactionHistory' instead.
TxLookupLimit uint64 `toml:",omitempty"` // The maximum number of blocks from head whose tx indices are reserved. TxLookupLimit uint64 `toml:",omitempty"` // The maximum number of blocks from head whose tx indices are reserved.
TransactionHistory uint64 `toml:",omitempty"` // The maximum number of blocks from head whose tx indices are reserved. TransactionHistory uint64 `toml:",omitempty"` // The maximum number of blocks from head whose tx indices are reserved.
StateHistory uint64 `toml:",omitempty"` // The maximum number of blocks from head whose state histories are reserved. StateHistory uint64 `toml:",omitempty"` // The maximum number of blocks from head whose state histories are reserved.

@ -181,7 +181,7 @@ func (h2p *Hbss2Pbss) ConcurrentTraversal(theTrie *Trie, theNode node, path []by
} }
} }
// copy from trie/Commiter (*committer).commit // copy from trie/Committer (*committer).commit
func (h2p *Hbss2Pbss) commitChildren(path []byte, n *fullNode) [17]node { func (h2p *Hbss2Pbss) commitChildren(path []byte, n *fullNode) [17]node {
var children [17]node var children [17]node
for i := 0; i < 16; i++ { for i := 0; i < 16; i++ {