diff --git a/llarp/dht/messages/findintro.cpp b/llarp/dht/messages/findintro.cpp index a024cf78d..6d9fe80b4 100644 --- a/llarp/dht/messages/findintro.cpp +++ b/llarp/dht/messages/findintro.cpp @@ -112,12 +112,7 @@ namespace llarp if(recursionDepth == 0) { // we don't have it - - Key_t closer; - // find closer peer - if(!dht.Nodes()->FindClosest(location, closer)) - return false; - replies.emplace_back(new GotIntroMessage(From, closer, txID)); + replies.emplace_back(new GotIntroMessage({}, txID)); return true; }