important fix for peer pubkey. when taken from identity, chop first format byte!

This commit is contained in:
zelig 2015-01-20 15:20:18 +00:00 committed by Felix Lange
parent 923504ce3d
commit 58fc2c679b

View File

@ -147,7 +147,7 @@ func (self *Peer) Pubkey() (pubkey []byte) {
defer self.infolock.Unlock()
switch {
case self.identity != nil:
pubkey = self.identity.Pubkey()
pubkey = self.identity.Pubkey()[1:]
case self.dialAddr != nil:
pubkey = self.dialAddr.Pubkey
case self.listenAddr != nil: