mirror of
https://github.com/monero-project/monero.git
synced 2024-12-27 17:09:23 -05:00
Merge pull request #1593
cbcdf8ad
Honor depth in get_peerlist_head method (Miguel Herranz)
This commit is contained in:
commit
3db3a6ee1a
@ -285,9 +285,11 @@ namespace nodetool
|
||||
{
|
||||
if(!vl.last_seen)
|
||||
continue;
|
||||
bs_head.push_back(vl);
|
||||
if(cnt++ > depth)
|
||||
|
||||
if(cnt++ >= depth)
|
||||
break;
|
||||
|
||||
bs_head.push_back(vl);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user