isAddrInBlockedSubnet method
Checks if an address is in a blocked subnet
Implementation
bool isAddrInBlockedSubnet(MultiAddr addr) {
for (final subnet in _blockedSubnets) {
if (_isAddrInSubnet(addr, subnet)) {
return true;
}
}
return false;
}