Skip to content

Commit

Permalink
Fix for visualization of unconfirmed transactions.
Browse files Browse the repository at this point in the history
  • Loading branch information
vaklinov committed Jan 14, 2017
1 parent 584a182 commit ca7c0ec
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/java/com/vaklinov/zcashui/AddressesPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ private String[][] getAddressBalanceDataFromWallet()
addressBalances[i++] = new String[]
{
balanceToShow,
isConfirmed ? ("Yes " + confirmed) : ("No " + notConfirmed),
isConfirmed ? ("Yes " + confirmed) : ("No " + notConfirmed),
address
};
}
Expand All @@ -401,7 +401,7 @@ private String[][] getAddressBalanceDataFromWallet()
addressBalances[i++] = new String[]
{
balanceToShow,
isConfirmed ? ("Yes " + confirmed) : ("No " + notConfirmed),
isConfirmed ? ("Yes " + confirmed) : ("No " + notConfirmed),
address
};
}
Expand Down
2 changes: 1 addition & 1 deletion src/java/com/vaklinov/zcashui/DashboardPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ public int compare(String[] o1, String[] o2)
{
boolean isConfirmed = !trans[2].trim().equals("0");

trans[2] = isConfirmed ? ("Yes " + confirmed) : ("No " + notConfirmed);
trans[2] = isConfirmed ? ("Yes " + confirmed) : ("No " + notConfirmed);
} catch (NumberFormatException nfe)
{
System.out.println("Error occurred while formatting confirmations: " + trans[2] +
Expand Down
2 changes: 1 addition & 1 deletion src/java/com/vaklinov/zcashui/ZCashUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public class ZCashUI
public ZCashUI(StartupProgressDialog progressDialog)
throws IOException, InterruptedException, WalletCallException
{
super("ZCash\u00AE Swing Wallet UI 0.53 (beta)");
super("ZCash\u00AE Swing Wallet UI 0.54 (beta)");

if (progressDialog != null)
{
Expand Down
2 changes: 1 addition & 1 deletion src/resources/ubuntu-package/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: ZCashSwingWalletUI
Version: 0.53
Version: 0.54
Section: misc
Priority: low
Architecture: all
Expand Down

0 comments on commit ca7c0ec

Please sign in to comment.