ufvk in the Account
This commit is contained in:
parent
09aeeb7d2d
commit
f2b830fe72
|
@ -16,8 +16,7 @@ public struct Account: Equatable, Hashable, Codable, Identifiable {
|
|||
public let keySource: String?
|
||||
public let seedFingerprint: [UInt8]?
|
||||
public let hdAccountIndex: Zip32AccountIndex?
|
||||
// TODO: This should be `UnifiedFullViewingKey?`
|
||||
public let ufvk: String?
|
||||
public let ufvk: UnifiedFullViewingKey?
|
||||
}
|
||||
|
||||
public struct UnifiedSpendingKey: Equatable, Undescribable {
|
||||
|
@ -52,7 +51,7 @@ public struct TransparentAccountPrivKey: Equatable, Undescribable {
|
|||
}
|
||||
|
||||
/// A ZIP 316 Unified Full Viewing Key.
|
||||
public struct UnifiedFullViewingKey: Equatable, StringEncoded, Undescribable {
|
||||
public struct UnifiedFullViewingKey: Equatable, StringEncoded, Undescribable, Hashable, Codable {
|
||||
let encoding: String
|
||||
|
||||
public var stringEncoded: String { encoding }
|
||||
|
|
|
@ -1230,6 +1230,13 @@ extension FfiAccount {
|
|||
)
|
||||
}
|
||||
|
||||
let ufvkTyped: UnifiedFullViewingKey?
|
||||
if let ufvk {
|
||||
ufvkTyped = UnifiedFullViewingKey(validatedEncoding: String(cString: ufvk))
|
||||
} else {
|
||||
ufvkTyped = nil
|
||||
}
|
||||
|
||||
// Valid ZIP32 account index
|
||||
return .init(
|
||||
id: AccountUUID(id: uuidArray),
|
||||
|
@ -1237,7 +1244,7 @@ extension FfiAccount {
|
|||
keySource: key_source != nil ? String(cString: key_source) : nil,
|
||||
seedFingerprint: seedFingerprintArray,
|
||||
hdAccountIndex: Zip32AccountIndex(hd_account_index),
|
||||
ufvk: ufvk != nil ? String(cString: ufvk) : nil
|
||||
ufvk: ufvkTyped
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue