Skip to content

Commit 71178cb

Browse files
authored
fix: output to unspent
1 parent 0d66386 commit 71178cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BDKSwiftExampleWallet/View/Activity/ActivityListView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ struct CustomSegmentedControl: View {
7272
selection = mode
7373
}
7474
}) {
75-
Text(mode == .transactions ? "Transactions" : "Outputs")
75+
Text(mode == .transactions ? "Transactions" : "Unspent")
7676
.bold()
7777
.foregroundColor(selection == mode ? .primary : .gray)
7878
}

BDKSwiftExampleWallet/View/Activity/LocalOutputListView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ struct LocalOutputListView: View {
1919
.listRowInsets(EdgeInsets())
2020
.listRowSeparator(.hidden)
2121
} else if localOutputs.isEmpty {
22-
Text("No Outputs")
22+
Text("No Unspent")
2323
.font(.subheadline)
2424
.listRowInsets(EdgeInsets())
2525
.listRowSeparator(.hidden)

0 commit comments

Comments
 (0)