variable lookup timeout on participants

This commit is contained in:
Jeff Becker 2020-01-10 11:23:30 -05:00
parent 8bb492da6e
commit 78cdf8f96b
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -598,7 +598,7 @@ namespace llarp
TXOwner peer(askpeer, ++ids);
_pendingIntrosetLookups.NewTX(
peer, asker, addr,
new ServiceAddressLookup(asker, addr, this, R, handler));
new ServiceAddressLookup(asker, addr, this, R, handler), (R * 2000));
}
void
@ -611,7 +611,7 @@ namespace llarp
TXOwner peer(askpeer, ++ids);
_pendingIntrosetLookups.NewTX(
peer, asker, addr,
new ServiceAddressLookup(asker, addr, this, 0, handler));
new ServiceAddressLookup(asker, addr, this, 0, handler), 1000);
}
void