request multiple introducers at the time

This commit is contained in:
orignal 2021-03-02 21:10:19 -05:00
parent 618aa26454
commit def9873a70
2 changed files with 15 additions and 5 deletions

View file

@ -1169,7 +1169,7 @@ namespace data
return GetRandomRouter (
[](std::shared_ptr<const RouterInfo> router)->bool
{
return !router->IsHidden () && router->IsIntroducer ();
return router->IsIntroducer () && !router->IsHidden () && !router->IsFloodfill (); // floodfills don't send relay tag
});
}