Optional account_name
This commit is contained in:
parent
dcf6cd90a0
commit
7782d6f530
|
@ -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]?,
|
||||
|
|
|
@ -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]?,
|
||||
|
|
|
@ -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?
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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]?,
|
||||
|
|
|
@ -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]?,
|
||||
|
|
|
@ -84,6 +84,7 @@ extension ClosureSDKSynchronizer: ClosureSynchronizer {
|
|||
}
|
||||
}
|
||||
|
||||
// swiftlint:disable:next function_parameter_count
|
||||
public func importAccount(
|
||||
ufvk: String,
|
||||
seedFingerprint: [UInt8]?,
|
||||
|
|
|
@ -131,6 +131,7 @@ extension CombineSDKSynchronizer: CombineSynchronizer {
|
|||
}
|
||||
}
|
||||
|
||||
// swiftlint:disable:next function_parameter_count
|
||||
public func importAccount(
|
||||
ufvk: String,
|
||||
seedFingerprint: [UInt8]?,
|
||||
|
|
|
@ -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]?,
|
||||
|
|
Loading…
Reference in New Issue