mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
minor fix
This commit is contained in:
parent
e464d4a70a
commit
8bae7d2179
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ class TransactionListItem extends ActionListItem with Keyable {
|
|||
|
||||
String get formattedPendingStatus {
|
||||
if (transaction.confirmations == 0 || transaction.isPending) {
|
||||
return S.current.pending;
|
||||
return S.current.pending + ' (${transaction.confirmations}/10)';
|
||||
}
|
||||
if (transaction.confirmations > 0 && transaction.confirmations < 10) {
|
||||
return ' (${transaction.confirmations}/10)';
|
||||
|
|
Loading…
Reference in a new issue