mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-19 18:41:29 +00:00
use 10 as default required confirmations
This commit is contained in:
parent
e0d99cb1bb
commit
0ae04fde4b
2 changed files with 3 additions and 2 deletions
|
@ -45,7 +45,7 @@ QList<TransactionInfo *> TransactionHistory::getAll() const
|
||||||
if (ti->timestamp() <= firstDateTime) {
|
if (ti->timestamp() <= firstDateTime) {
|
||||||
firstDateTime = ti->timestamp();
|
firstDateTime = ti->timestamp();
|
||||||
}
|
}
|
||||||
quint64 requiredConfirmations = (ti->blockHeight() < ti->unlockTime()) ? ti->unlockTime() - ti->blockHeight() : 0;
|
quint64 requiredConfirmations = (ti->blockHeight() < ti->unlockTime()) ? ti->unlockTime() - ti->blockHeight() : 10;
|
||||||
// store last tx height
|
// store last tx height
|
||||||
if (ti->confirmations() < requiredConfirmations && ti->blockHeight() >= lastTxHeight) {
|
if (ti->confirmations() < requiredConfirmations && ti->blockHeight() >= lastTxHeight) {
|
||||||
lastTxHeight = ti->blockHeight();
|
lastTxHeight = ti->blockHeight();
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
#include "TransactionInfo.h"
|
#include "TransactionInfo.h"
|
||||||
|
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
|
#include <QDebug>
|
||||||
|
|
||||||
|
|
||||||
TransactionHistoryModel::TransactionHistoryModel(QObject *parent)
|
TransactionHistoryModel::TransactionHistoryModel(QObject *parent)
|
||||||
|
@ -86,7 +87,7 @@ QVariant TransactionHistoryModel::data(const QModelIndex &index, int role) const
|
||||||
result = tInfo->confirmations();
|
result = tInfo->confirmations();
|
||||||
break;
|
break;
|
||||||
case TransactionConfirmationsRequiredRole:
|
case TransactionConfirmationsRequiredRole:
|
||||||
result = (tInfo->blockHeight() < tInfo->unlockTime()) ? tInfo->unlockTime() - tInfo->blockHeight() : 0;
|
result = (tInfo->blockHeight() < tInfo->unlockTime()) ? tInfo->unlockTime() - tInfo->blockHeight() : 10;
|
||||||
break;
|
break;
|
||||||
case TransactionHashRole:
|
case TransactionHashRole:
|
||||||
result = tInfo->hash();
|
result = tInfo->hash();
|
||||||
|
|
Loading…
Reference in a new issue