Optional account_name

This commit is contained in:
Lukas Korba 2024-12-09 17:31:27 +01:00
parent dcf6cd90a0
commit 7782d6f530
9 changed files with 12 additions and 6 deletions

View File

@ -96,7 +96,8 @@ public protocol ClosureSynchronizer {
)
func listAccounts(completion: @escaping (Result<[Account], Error>) -> Void)
// swiftlint:disable:next function_parameter_count
func importAccount(
ufvk: String,
seedFingerprint: [UInt8]?,

View File

@ -97,7 +97,8 @@ public protocol CombineSynchronizer {
) -> SinglePublisher<Proposal, Error>
func listAccounts() -> SinglePublisher<[Account], Error>
// swiftlint:disable:next function_parameter_count
func importAccount(
ufvk: String,
seedFingerprint: [UInt8]?,

View File

@ -12,7 +12,7 @@ public protocol StringEncoded {
public struct Account: Equatable, Hashable, Codable, Identifiable {
public let id: AccountUUID
public let name: String
public let name: String?
public let keySource: String?
public let seedFingerprint: [UInt8]?
public let hdAccountIndex: Zip32AccountIndex?

View File

@ -119,6 +119,7 @@ struct ZcashRustBackend: ZcashRustBackendWelding {
return accountPtr.pointee.unsafeToAccount()
}
// swiftlint:disable:next function_parameter_count
@DBActor
func importAccount(
ufvk: String,
@ -1053,7 +1054,7 @@ extension FfiAccount {
func unsafeToAccount() -> Account {
.init(
id: AccountUUID(id: uuidArray),
name: account_name != nil ? String(cString: account_name) : "",
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)

View File

@ -38,6 +38,7 @@ protocol ZcashRustBackendWelding {
/// Returns a list of the accounts in the wallet.
func listAccounts() async throws -> [Account]
// swiftlint:disable:next function_parameter_count
func importAccount(
ufvk: String,
seedFingerprint: [UInt8]?,

View File

@ -297,7 +297,7 @@ public protocol Synchronizer: AnyObject {
/// - purpose: of the account, either `spending` or `viewOnly`
/// - name: name of the account.
/// - keySource: custom optional string for clients, used for example to help identify the type of the account.
@discardableResult
// swiftlint:disable:next function_parameter_count
func importAccount(
ufvk: String,
seedFingerprint: [UInt8]?,

View File

@ -84,6 +84,7 @@ extension ClosureSDKSynchronizer: ClosureSynchronizer {
}
}
// swiftlint:disable:next function_parameter_count
public func importAccount(
ufvk: String,
seedFingerprint: [UInt8]?,

View File

@ -131,6 +131,7 @@ extension CombineSDKSynchronizer: CombineSynchronizer {
}
}
// swiftlint:disable:next function_parameter_count
public func importAccount(
ufvk: String,
seedFingerprint: [UInt8]?,

View File

@ -277,7 +277,7 @@ public class SDKSynchronizer: Synchronizer {
try await initializer.rustBackend.listAccounts()
}
@discardableResult
// swiftlint:disable:next function_parameter_count
public func importAccount(
ufvk: String,
seedFingerprint: [UInt8]?,