diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-08-03 21:43:01 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-08-03 21:43:01 +0200 |
| commit | a7f52db61386e1af24ce3aa3836f6991decebae3 (patch) | |
| tree | 430a127d607e92be9766a9a6fcf7828246f997d5 /components/HistoryTable.qml | |
| parent | c68c31777693ae75b59c0d24c44195a97bbf0c1c (diff) | |
| download | monzero-gui-a7f52db61386e1af24ce3aa3836f6991decebae3.tar.gz monzero-gui-a7f52db61386e1af24ce3aa3836f6991decebae3.tar.xz monzero-gui-a7f52db61386e1af24ce3aa3836f6991decebae3.zip | |
History: Support coinbase txs
requires #2247
Diffstat (limited to 'components/HistoryTable.qml')
| -rw-r--r-- | components/HistoryTable.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index 933c606c..082822d3 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -259,11 +259,11 @@ ListView { //elide: Text.ElideRight font.family: "Arial" font.pixelSize: 13 - color: (confirmations < 10)? "#FF6C3C" : "#545454" + color: (confirmations < confirmationsRequired)? "#FF6C3C" : "#545454" text: { if (!isPending) - if(confirmations < 10) - return blockHeight + " " + qsTr("(%1/10 confirmations)").arg(confirmations) + if(confirmations < confirmationsRequired) + return blockHeight + " " + qsTr("(%1/%2 confirmations)").arg(confirmations).arg(confirmationsRequired) else return blockHeight if (!isOut) |
