correct comparison

pull/686/head
Jeff Becker 5 years ago
parent 5c8b17154c
commit 6ab3678f5c
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -334,7 +334,7 @@ namespace llarp
});
if(t <= now)
return should;
return should && t - now < path::default_lifetime / 2;
return should && t - now >= path::default_lifetime / 2;
}
bool

Loading…
Cancel
Save