default recursion depth to 2 not 12

pull/1089/head
Jeff Becker 4 years ago
parent 19d91a440f
commit 5b87a9419e
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -46,8 +46,8 @@ namespace llarp
HiddenServiceAddressLookup::BuildRequestMessage()
{
auto msg = std::make_shared< routing::DHTMessage >();
msg->M.emplace_back(std::make_unique< dht::FindIntroMessage >(
txid, location, dht::FindIntroMessage::MaxRecursionDepth));
msg->M.emplace_back(
std::make_unique< dht::FindIntroMessage >(txid, location, 2));
return msg;
}

Loading…
Cancel
Save