Skip to content

Commit

Permalink
fix(dre): Allow UK countries in the European subnet, since UK is GDPR…
Browse files Browse the repository at this point in the history
… compliant (#1065)
  • Loading branch information
sasa-tomic authored Nov 11, 2024
1 parent 23174fe commit 97dfe8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rs/decentralization/src/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ impl DecentralizedSubnet {
let non_european_nodes_count = country_counts
.iter()
.filter_map(|(country, count)| {
if Node::is_country_from_eu(country.as_str()) || country.as_str() == "CH" {
if Node::is_country_from_eu(country.as_str()) || country.as_str() == "CH" || country.as_str() == "UK" {
None
} else {
Some(*count)
Expand Down

0 comments on commit 97dfe8f

Please sign in to comment.