mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
fix: [vanity] length > 5 clusters
This commit is contained in:
parent
784579baef
commit
6fa8f6e0bc
1 changed files with 1 additions and 3 deletions
|
@ -679,13 +679,11 @@ def get_vanity_cluster(vanity, len_vanity=4, nb_min=4):
|
|||
return get_vanity_clusters(nb_min=nb_min)
|
||||
else:
|
||||
clusters = {}
|
||||
print(vanity, len_vanity, get_vanity_domains(vanity[:4], len_vanity=4))
|
||||
for domain in get_vanity_domains(vanity[:4], len_vanity=4):
|
||||
new_vanity = get_domain_vanity(domain, len_vanity=len_vanity)
|
||||
if vanity not in clusters:
|
||||
if new_vanity not in clusters:
|
||||
clusters[new_vanity] = 0
|
||||
clusters[new_vanity] += 1
|
||||
print(clusters)
|
||||
to_remove = []
|
||||
for new_vanity in clusters:
|
||||
if clusters[new_vanity] < nb_min:
|
||||
|
|
Loading…
Reference in a new issue