Code syntax updated for the unwrap of ufvk
This commit is contained in:
parent
90cc180c65
commit
b4fa4380f1
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue