Expose UFVK on the `Account` type
This commit is contained in:
parent
8a8b63bf53
commit
09aeeb7d2d
|
@ -176,7 +176,7 @@
|
|||
"kind" : "remoteSourceControl",
|
||||
"location" : "https://github.com/Electric-Coin-Company/zcash-light-client-ffi",
|
||||
"state" : {
|
||||
"revision" : "52da5c23c3fd412ca07eb42bf08c36d6ca58d05b"
|
||||
"revision" : "5182c7a77759c07708d3e5d1120586bca3de832a"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -122,7 +122,7 @@
|
|||
"kind" : "remoteSourceControl",
|
||||
"location" : "https://github.com/Electric-Coin-Company/zcash-light-client-ffi",
|
||||
"state" : {
|
||||
"revision" : "52da5c23c3fd412ca07eb42bf08c36d6ca58d05b"
|
||||
"revision" : "5182c7a77759c07708d3e5d1120586bca3de832a"
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
@ -16,8 +16,8 @@ let package = Package(
|
|||
dependencies: [
|
||||
.package(url: "https://github.com/grpc/grpc-swift.git", from: "1.24.2"),
|
||||
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3"),
|
||||
// Built from 439216e34ca156146fa8856daba2c4f0da331498
|
||||
.package(url: "https://github.com/Electric-Coin-Company/zcash-light-client-ffi", revision: "52da5c23c3fd412ca07eb42bf08c36d6ca58d05b")
|
||||
// Built from 2c7a03c52ed0bf388042599e3564beb455448376
|
||||
.package(url: "https://github.com/Electric-Coin-Company/zcash-light-client-ffi", revision: "5182c7a77759c07708d3e5d1120586bca3de832a")
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
|
|
|
@ -16,6 +16,8 @@ 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 struct UnifiedSpendingKey: Equatable, Undescribable {
|
||||
|
|
|
@ -1225,7 +1225,8 @@ extension FfiAccount {
|
|||
name: account_name != nil ? String(cString: account_name) : nil,
|
||||
keySource: key_source != nil ? String(cString: key_source) : nil,
|
||||
seedFingerprint: nil,
|
||||
hdAccountIndex: nil
|
||||
hdAccountIndex: nil,
|
||||
ufvk: nil
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -1235,7 +1236,8 @@ extension FfiAccount {
|
|||
name: account_name != nil ? String(cString: account_name) : nil,
|
||||
keySource: key_source != nil ? String(cString: key_source) : nil,
|
||||
seedFingerprint: seedFingerprintArray,
|
||||
hdAccountIndex: Zip32AccountIndex(hd_account_index)
|
||||
hdAccountIndex: Zip32AccountIndex(hd_account_index),
|
||||
ufvk: ufvk != nil ? String(cString: ufvk) : nil
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue