mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #5954
4ce40ed
p2p: reject invalid pruning seeds in peer lists (moneromooo-monero)
This commit is contained in:
commit
67043d642d
1 changed files with 2 additions and 0 deletions
|
@ -1865,6 +1865,8 @@ namespace nodetool
|
||||||
if (ipv4.ip() == 0)
|
if (ipv4.ip() == 0)
|
||||||
ignore = true;
|
ignore = true;
|
||||||
}
|
}
|
||||||
|
if (be.pruning_seed && (be.pruning_seed < tools::make_pruning_seed(1, CRYPTONOTE_PRUNING_LOG_STRIPES) || be.pruning_seed > tools::make_pruning_seed(1ul << CRYPTONOTE_PRUNING_LOG_STRIPES, CRYPTONOTE_PRUNING_LOG_STRIPES)))
|
||||||
|
ignore = true;
|
||||||
if (ignore)
|
if (ignore)
|
||||||
{
|
{
|
||||||
MDEBUG("Ignoring " << be.adr.str());
|
MDEBUG("Ignoring " << be.adr.str());
|
||||||
|
|
Loading…
Reference in a new issue