Updated on 2026-08-14

This commit is contained in:
Tangem 2018-06-01 12:18:21 +03:00
parent 99825905ab
commit 5226ce7667
6 changed files with 13 additions and 13 deletions

View file

@ -327,7 +327,7 @@ public class TangemCard {
// }
// }
} else {
result.append("None");
result.append("-- -- --");
}
} else {
result.append("-- -- --");
@ -405,7 +405,7 @@ public class TangemCard {
result.append("\nawaiting confirmation...");
}
} else if (balanceUnconfirmed == 0) {
result.append("None");
result.append("-- -- --");
} else if (balanceUnconfirmed != 0) {
result.append("awaiting confirmation...");
}
@ -432,7 +432,7 @@ public class TangemCard {
if (hasUnspentInfo() && hasHistoryInfo() && mHistoryTransactions.size() - mUnspentTransactions.size() > 0) {
return String.valueOf(mHistoryTransactions.size() - mUnspentTransactions.size());
} else if (hasUnspentInfo() && hasHistoryInfo()) {
return "None";
return "-- -- --";
} else {
return "-- -- --";
}
@ -476,7 +476,7 @@ public class TangemCard {
if (balanceUnconfirmed != 0) {
return "awaiting confirmation...";
} else {
return "None";
return "-- -- --";
}
}
}
@ -505,13 +505,13 @@ public class TangemCard {
}
if (maxUDT == 0) {
return "None";
return "-- -- --";
} else {
return Util.formatDateTime(new Date(maxUDT));
}
} else {
return "None";
return "-- -- --";
}
} else {
return "-- -- --";