mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 23:27:26 +01:00
Merge pull request #6366 from BlueWallet/pending
FIX: Unconfirmed txs would always show "a few seconds ago" on watchOS
This commit is contained in:
commit
bd0d84fdf9
1 changed files with 5 additions and 1 deletions
|
@ -31,7 +31,11 @@ class TransactionTableRow: NSObject {
|
|||
|
||||
var time: String = "" {
|
||||
willSet {
|
||||
transactionTimeLabel.setText(newValue)
|
||||
if type == "pendingConfirmation" {
|
||||
transactionTimeLabel.setText("Pending...")
|
||||
} else {
|
||||
transactionTimeLabel.setText(newValue)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue