Skip to content

Commit

Permalink
Tells the user to use --faster to skip blockchain verification on boot
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoras committed Feb 2, 2019
1 parent 71a1498 commit 3798ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ func blockchainVerifyEverything() error {
log.Println("Skipping blockchain consistency checks")
return nil
}
log.Println("Verifying all the blocks...")
log.Println("Verifying all the blocks (use --faster to skip)...")
maxHeight := dbGetBlockchainHeight()
for height := 0; height <= maxHeight; height++ {
if height > 0 && height%1000 == 0 {
Expand Down

0 comments on commit 3798ab0

Please sign in to comment.