Made the debug line for invalid peer versions dynamic

This commit is contained in:
Maran 2014-05-12 12:28:56 +02:00
parent 36572f03a7
commit 4eb3ad192e
1 changed files with 1 additions and 1 deletions

View File

@ -549,7 +549,7 @@ func (p *Peer) handleHandshake(msg *ethwire.Msg) {
c := msg.Data
if c.Get(0).Uint() != ProtocolVersion {
ethutil.Config.Log.Debugln("Invalid peer version. Require protocol v5")
ethutil.Config.Log.Debugln("Invalid peer version. Require protocol:", ProtocolVersion)
p.Stop()
return
}