Updated on 2026-08-14

This commit is contained in:
Tangem 2020-03-30 09:44:22 +03:00
commit 2d862cd405
2 changed files with 2 additions and 3 deletions

View file

@ -189,7 +189,7 @@ public class ServerApiAdalite {
}
private void retryRequest(String method, String wallet, String tx) {
currentURL = adaliteURL2;
// currentURL = adaliteURL2;
requestData(method, wallet, tx, true);
}
}

View file

@ -20,8 +20,7 @@ class DepersonalizeCommand : CommandSerializer<DepersonalizeResponse>() {
override fun serialize(cardEnvironment: CardEnvironment): CommandApdu {
return CommandApdu(
Instruction.Depersonalize, byteArrayOf(),
cardEnvironment.encryptionMode, cardEnvironment.encryptionKey
Instruction.Depersonalize, byteArrayOf()
)
}