p2p: fix decoding of disconnect reason (fixes #200)

This commit is contained in:
Felix Lange 2014-12-09 13:39:56 +01:00
parent ce0c4e5d86
commit 9423401d73
1 changed files with 2 additions and 2 deletions

View File

@ -154,11 +154,11 @@ func (bp *baseProtocol) handle(rw MsgReadWriter) error {
return newPeerError(errProtocolBreach, "extra handshake received")
case discMsg:
var reason DiscReason
var reason [1]DiscReason
if err := msg.Decode(&reason); err != nil {
return err
}
bp.peer.Disconnect(reason)
bp.peer.Disconnect(reason[0])
return nil
case pingMsg: