make sure the pow functions are static in java

This commit is contained in:
Vitor Pamplona 2025-01-15 10:11:17 -05:00
parent b90aac496e
commit 5a3c821da4

View File

@ -24,6 +24,7 @@ import com.vitorpamplona.quartz.nip01Core.HexKey
class PoWRankProcessor {
companion object {
@JvmStatic
fun compute(
id: HexKey,
commitedPoW: Int?,
@ -41,6 +42,7 @@ class PoWRankProcessor {
}
}
@JvmStatic
fun calculatePowRankOf(id: HexKey): Int {
var rank = 0
for (i in 0..id.length) {