mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-10 04:00:37 +00:00
remove testing panics
This commit is contained in:
parent
ea1d21f7e5
commit
495891d9e8
@ -281,7 +281,6 @@ func (p *peer) handleSwitchMsg(packet []byte) {
|
||||
}
|
||||
//p.core.log.Println("Decoded msg:", msg, "; bytes:", packet)
|
||||
if len(msg.Hops) < 1 {
|
||||
panic("FIXME testing")
|
||||
p.core.peers.removePeer(p.port)
|
||||
}
|
||||
var loc switchLocator
|
||||
@ -293,7 +292,6 @@ func (p *peer) handleSwitchMsg(packet []byte) {
|
||||
loc.coords = append(loc.coords, hop.Port)
|
||||
bs := getBytesForSig(&hop.Next, &sigMsg)
|
||||
if !p.core.sigs.check(&prevKey, &hop.Sig, bs) {
|
||||
panic("FIXME testing")
|
||||
p.core.peers.removePeer(p.port)
|
||||
}
|
||||
prevKey = hop.Next
|
||||
|
Loading…
Reference in New Issue
Block a user