Skip to content

Commit

Permalink
Merge pull request #3337 from TrueBlocks/fixing
Browse files Browse the repository at this point in the history
Typos
  • Loading branch information
tjayrush authored Oct 27, 2023
2 parents 95196d8 + 9739cdb commit 5a7890e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/apps/chifra/internal/chunks/handle_check_deep.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (opts *ChunksOptions) CheckDeep(cacheMan *manifest.Manifest, report *simple
}
addrCnt++
if i%8000 == 0 {
bar.Prefix = fmt.Sprintf("Checked %d addresses againt %d Blooms", addrCnt, len(theMap))
bar.Prefix = fmt.Sprintf("Checked %d addresses against %d Blooms", addrCnt, len(theMap))
bar.Tick()
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/apps/chifra/internal/init/handle_init.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func (opts *InitOptions) downloadAndReportProgress(chunks []types.SimpleChunkRec
if sleep > 0 {
ms := time.Duration(sleep*1000) * time.Millisecond
if !opts.Globals.TestMode {
logger.Info(fmt.Sprintf("Sleeping for %g seconds", sleep))
logger.Progress(true, fmt.Sprintf("Sleeping for %g seconds", sleep))
}
time.Sleep(ms)
}
Expand Down

0 comments on commit 5a7890e

Please sign in to comment.