diff options
author | Felix Lange <fjl@twurst.com> | 2015-05-25 08:49:53 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-05-25 08:49:53 +0800 |
commit | cc318ff8db20528cb567227c42c5d37dc892cc49 (patch) | |
tree | 98d29b7f6cbf39f821f8c1928afc9ba0b5eeade5 /eth/sync.go | |
parent | 394826f520f4c34fe11c8e9dc45c5810024a22e2 (diff) | |
parent | 97433f5ef14dad126bdced05c3fa257ba8f13f89 (diff) | |
download | go-tangerine-cc318ff8db20528cb567227c42c5d37dc892cc49.tar.gz go-tangerine-cc318ff8db20528cb567227c42c5d37dc892cc49.tar.zst go-tangerine-cc318ff8db20528cb567227c42c5d37dc892cc49.zip |
Merge pull request #1078 from carver/patch-1
eth: expand acronym in log message from TD
Diffstat (limited to 'eth/sync.go')
-rw-r--r-- | eth/sync.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/sync.go b/eth/sync.go index 62d08acb6..8a0da39ec 100644 --- a/eth/sync.go +++ b/eth/sync.go @@ -82,7 +82,7 @@ func (pm *ProtocolManager) synchronise(peer *peer) { } // Make sure the peer's TD is higher than our own. If not drop. if peer.td.Cmp(pm.chainman.Td()) <= 0 { - glog.V(logger.Debug).Infoln("Synchronisation canceled: peer TD too small") + glog.V(logger.Debug).Infoln("Synchronisation canceled: peer's total difficulty is too small") return } // FIXME if we have the hash in our chain and the TD of the peer is |