Skip to content

Commit 2959b03

Browse files
committed
chore: ran swift-format
1 parent 3aadfd0 commit 2959b03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

BDKSwiftExampleWallet/View Model/Activity/ActivityListViewModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ActivityListViewModel {
2222
var totalScripts: UInt64 = 0
2323
var walletSyncState: WalletSyncState
2424
var walletViewError: AppError?
25-
25+
2626
private var updateProgress: @Sendable (UInt64, UInt64) -> Void {
2727
{ [weak self] inspected, total in
2828
DispatchQueue.main.async {

BDKSwiftExampleWallet/View Model/Settings/SettingsViewModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class SettingsViewModel: ObservableObject {
2020
@Published var settingsError: AppError?
2121
@Published var showingSettingsViewErrorAlert = false
2222
@Published var walletSyncState: WalletSyncState = .notStarted
23-
23+
2424
private var updateProgressFullScan: @Sendable (UInt64) -> Void {
2525
{ [weak self] inspected in
2626
DispatchQueue.main.async {

BDKSwiftExampleWallet/View Model/WalletViewModel.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class WalletViewModel {
3939
var transactions: [CanonicalTx]
4040
var walletSyncState: WalletSyncState
4141
var walletViewError: AppError?
42-
42+
4343
private var updateProgress: @Sendable (UInt64, UInt64) -> Void {
4444
{ [weak self] inspected, total in
4545
DispatchQueue.main.async {

0 commit comments

Comments
 (0)