1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

use correct compare

This commit is contained in:
Jeff Becker 2018-09-27 13:51:42 -04:00
parent 869b758365
commit 72ce48d3ea
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -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