diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-02-27 19:22:33 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-02-27 19:22:33 +0800 |
commit | 8676aeb798f575024e173ca5c677aaee32e77725 (patch) | |
tree | 4f20591ccc4b60ceca0379a20074df856a3d2be7 /eth | |
parent | 46eea4d10533f9376e0d36255dfc1083e28d5bbc (diff) | |
download | dexon-8676aeb798f575024e173ca5c677aaee32e77725.tar.gz dexon-8676aeb798f575024e173ca5c677aaee32e77725.tar.zst dexon-8676aeb798f575024e173ca5c677aaee32e77725.zip |
eth/downloader: review fixes
Diffstat (limited to 'eth')
-rw-r--r-- | eth/downloader/downloader.go | 2 | ||||
-rw-r--r-- | eth/downloader/modes.go | 18 |
2 files changed, 13 insertions, 7 deletions
diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go index 8ce86eacd..92e42f0b3 100644 --- a/eth/downloader/downloader.go +++ b/eth/downloader/downloader.go @@ -383,7 +383,7 @@ func (d *Downloader) syncWithPeer(p *peer, hash common.Hash, td *big.Int) (err e return errTooOld } - log.Debug("Synchronising with the network", "peer", p.id, "eth", p.version, "head", hash.Hex()[2:10], "td", td, "mode", syncModeLabels[d.mode]) + log.Debug("Synchronising with the network", "peer", p.id, "eth", p.version, "head", hash.Hex()[2:10], "td", td, "mode", d.mode) defer func(start time.Time) { log.Debug("Synchronisation terminated", "elapsed", time.Since(start)) }(time.Now()) diff --git a/eth/downloader/modes.go b/eth/downloader/modes.go index c2ce0cfef..ae3c43888 100644 --- a/eth/downloader/modes.go +++ b/eth/downloader/modes.go @@ -25,10 +25,16 @@ const ( LightSync // Download only the headers and terminate afterwards ) -// syncModeLabels contains a mapping of sync modes to textual label used by the -// logging system. -var syncModeLabels = map[SyncMode]string{ - FullSync: "full", - FastSync: "fast", - LightSync: "light", +// String implements the stringer interface. +func (mode SyncMode) String() string { + switch mode { + case FullSync: + return "full" + case FastSync: + return "fast" + case LightSync: + return "light" + default: + return "unknown" + } } |