aboutsummaryrefslogtreecommitdiffstats
path: root/consensus/clique/clique.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-05-20 00:40:55 +0800
committerGitHub <noreply@github.com>2018-05-20 00:40:55 +0800
commitab6bdbd9b0ea54897559f0f6df5c2a384a92f596 (patch)
treee0fc0af8724248b976140ddf8ef5232639c41133 /consensus/clique/clique.go
parent953b5ac015da7fdef39c6864bb0cb490ffaa7959 (diff)
parentf2fdb75dd98769146d3284bfbd74b25e6e18e5ef (diff)
downloadgo-tangerine-ab6bdbd9b0ea54897559f0f6df5c2a384a92f596.tar
go-tangerine-ab6bdbd9b0ea54897559f0f6df5c2a384a92f596.tar.gz
go-tangerine-ab6bdbd9b0ea54897559f0f6df5c2a384a92f596.tar.bz2
go-tangerine-ab6bdbd9b0ea54897559f0f6df5c2a384a92f596.tar.lz
go-tangerine-ab6bdbd9b0ea54897559f0f6df5c2a384a92f596.tar.xz
go-tangerine-ab6bdbd9b0ea54897559f0f6df5c2a384a92f596.tar.zst
go-tangerine-ab6bdbd9b0ea54897559f0f6df5c2a384a92f596.zip
Merge pull request #16758 from hadv/fix/typos
Fix some typos in comment code and output log
Diffstat (limited to 'consensus/clique/clique.go')
-rw-r--r--consensus/clique/clique.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/consensus/clique/clique.go b/consensus/clique/clique.go
index 2bdad9092..01df4d5c7 100644
--- a/consensus/clique/clique.go
+++ b/consensus/clique/clique.go
@@ -383,7 +383,7 @@ func (c *Clique) snapshot(chain consensus.ChainReader, number uint64, hash commo
// If an on-disk checkpoint snapshot can be found, use that
if number%checkpointInterval == 0 {
if s, err := loadSnapshot(c.config, c.signatures, c.db, hash); err == nil {
- log.Trace("Loaded voting snapshot form disk", "number", number, "hash", hash)
+ log.Trace("Loaded voting snapshot from disk", "number", number, "hash", hash)
snap = s
break
}