Code syntax updated for the unwrap of ufvk

This commit is contained in:
Lukas Korba 2025-03-05 11:41:45 +01:00
parent 90cc180c65
commit b4fa4380f1
1 changed files with 2 additions and 7 deletions

View File

@ -1230,13 +1230,8 @@ extension FfiAccount {
)
}
let ufvkTyped: UnifiedFullViewingKey?
if let ufvk {
ufvkTyped = UnifiedFullViewingKey(validatedEncoding: String(cString: ufvk))
} else {
ufvkTyped = nil
}
let ufvkTyped = ufvk.map { UnifiedFullViewingKey(validatedEncoding: String(cString: $0)) }
// Valid ZIP32 account index
return .init(
id: AccountUUID(id: uuidArray),