use correct compare

pull/18/head
Jeff Becker 6 years ago
parent 869b758365
commit 72ce48d3ea
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -71,9 +71,7 @@ namespace llarp
bool
operator==(const Introduction& other) const
{
return expiresAt == other.expiresAt && version == other.version
&& pathID == other.pathID && router == other.router
&& latency == other.latency;
return pathID == other.pathID && router == other.router;
}
bool

Loading…
Cancel
Save