Skip to content

Commit

Permalink
Fix showing reserved balance instead of unconfirmed in GUI (#3207)
Browse files Browse the repository at this point in the history
  • Loading branch information
benthecarman committed May 31, 2021
1 parent d3f827a commit deb0862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/gui/src/main/scala/org/bitcoins/gui/WalletGUI.scala
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ abstract class WalletGUI {

private lazy val unconfirmedText = new Label() {
text <== StringProperty(
"Unconfirmed balance:\t") + GlobalData.currentReservedBalance + StringProperty(
"Unconfirmed balance:\t") + GlobalData.currentUnconfirmedBalance + StringProperty(
" sats")
}

Expand Down

0 comments on commit deb0862

Please sign in to comment.