check for current introset being zero (initial state)

pull/1085/head
Jeff Becker 4 years ago
parent 8230b1152e
commit 41210a8ae1
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -93,7 +93,7 @@ namespace llarp
updatingIntroSet = false;
if(i.has_value())
{
if(currentIntroSet.T >= i->T)
if(currentIntroSet.T != 0 and currentIntroSet.T >= i->T)
{
LogInfo("introset is old, dropping");
return true;

Loading…
Cancel
Save