You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Application is getting crash on launch at below code in DatabaseCoordinator. If I comment out the code. Its working. However while creating wallet: went to infinite loop or sometimes I got logged out from wallet app. Any suggestions ?
migrator.registerMigration("challenge keys format") { _ in
let fixKey = { (keyType: SecureStorage.Keys) -> () in
if try self.secureStorage.has(keyType) {
let publicKey = try self.secureStorage.get(keyType)
if publicKey.count > 33,
let stringyKey = String(data: Data(hex: publicKey), encoding: .utf8) {
try self.secureStorage.store(stringyKey, at: keyType)
}
}
}
// Crash here
try fixKey(.passwordPublicKey)
try fixKey(.recoveryCodePublicKey)
}
The text was updated successfully, but these errors were encountered:
Hi All,
Application is getting crash on launch at below code in DatabaseCoordinator. If I comment out the code. Its working. However while creating wallet: went to infinite loop or sometimes I got logged out from wallet app. Any suggestions ?
The text was updated successfully, but these errors were encountered: