1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00
This commit is contained in:
VolodymyrBg 2025-03-06 22:38:34 +03:00 committed by GitHub
commit 34c9a50e4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -238,7 +238,7 @@ struct PartsHelper {
return key() < other.key(); return key() < other.key();
} }
}; };
std::set<Key> rarest_parts; // TODO: use vector instead of set std::vector<Key> rarest_parts; // Using vector for better performance
}; };
std::vector<Part> parts_; std::vector<Part> parts_;