mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
p2p: reject invalid pruning seeds in peer lists
This commit is contained in:
parent
b60cf6a938
commit
4ce40edb27
@ -1858,6 +1858,8 @@ namespace nodetool
|
||||
if (ipv4.ip() == 0)
|
||||
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)
|
||||
{
|
||||
MDEBUG("Ignoring " << be.adr.str());
|
||||
|
Loading…
Reference in New Issue
Block a user