add has zero in pin check for onekey classic

This commit is contained in:
Craig Raw 2025-07-29 14:44:48 +02:00
parent 056d5f83a6
commit 0ce32e4314

View file

@ -109,6 +109,14 @@ public enum WalletModel {
}
}
public boolean hasZeroInPin() {
if(this == ONEKEY_CLASSIC_1S) {
return true;
} else {
return false;
}
}
public boolean requiresSeedInitialization() {
if(this == SATOCHIP) {
return true;