Adjust PoW policy defaults (finalize 16/15/14 mapping)

This commit is contained in:
jack
2025-08-31 17:10:05 +02:00
parent 29976f4e19
commit 749d80aa85
+3 -3
View File
@@ -9,9 +9,9 @@ enum PowPolicy {
let precision = geohash.count let precision = geohash.count
// Start at 13 and go down with higher precision (smaller areas) // Start at 13 and go down with higher precision (smaller areas)
switch precision { switch precision {
case ...5: return 13 case ...5: return 16
case 6: return 12 case 6: return 15
default: return 11 default: return 14
} }
} }
} }