Only display PoW status with 8 bits of zeros - 0x00..

This commit is contained in:
Vitor Pamplona
2023-03-30 09:10:27 -04:00
parent bfb7de896c
commit 7f305f498b

View File

@@ -350,7 +350,7 @@ fun NoteComposeInner(
}
val pow = noteEvent.getPoWRank()
if (pow > 1) {
if (pow > 8) {
DisplayPoW(pow)
}
}