diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-05-20 00:40:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-20 00:40:55 +0800 |
commit | ab6bdbd9b0ea54897559f0f6df5c2a384a92f596 (patch) | |
tree | e0fc0af8724248b976140ddf8ef5232639c41133 /consensus/clique/clique.go | |
parent | 953b5ac015da7fdef39c6864bb0cb490ffaa7959 (diff) | |
parent | f2fdb75dd98769146d3284bfbd74b25e6e18e5ef (diff) | |
download | go-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.go | 2 |
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 } |