p2p/discover: use rlp.DecodeBytes

This commit is contained in:
Felix Lange 2015-04-14 12:02:23 +02:00
parent 2750ec47b7
commit eedbb1ee9a
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ func decodePacket(buf []byte) (packet, NodeID, []byte, error) {
default: default:
return nil, fromID, hash, fmt.Errorf("unknown type: %d", ptype) return nil, fromID, hash, fmt.Errorf("unknown type: %d", ptype)
} }
err = rlp.Decode(bytes.NewReader(sigdata[1:]), req) err = rlp.DecodeBytes(sigdata[1:], req)
return req, fromID, hash, err return req, fromID, hash, err
} }