mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-19 08:03:48 +02:00
Merge pull request #63
a15787a
TransactionHistory: fix date appearing as NaN (moneromooo.monero)
This commit is contained in:
commit
ffeeb1fa86
@ -29,8 +29,8 @@ QList<TransactionInfo *> TransactionHistory::getAll() const
|
||||
qDeleteAll(m_tinfo);
|
||||
m_tinfo.clear();
|
||||
|
||||
QDateTime firstDateTime = QDateTime::currentDateTime();
|
||||
QDateTime lastDateTime = QDateTime(QDate(1970, 1, 1));
|
||||
QDateTime firstDateTime = QDateTime::currentDateTime().addDays(1); // tomorrow (guard against jitter and timezones)
|
||||
QDateTime lastDateTime = QDateTime(QDate(2014, 4, 18)); // the genesis block
|
||||
|
||||
TransactionHistory * parent = const_cast<TransactionHistory*>(this);
|
||||
for (const auto i : m_pimpl->getAll()) {
|
||||
@ -85,6 +85,6 @@ QDateTime TransactionHistory::lastDateTime() const
|
||||
TransactionHistory::TransactionHistory(Bitmonero::TransactionHistory *pimpl, QObject *parent)
|
||||
: QObject(parent), m_pimpl(pimpl)
|
||||
{
|
||||
m_firstDateTime = QDateTime(QDate(1970, 1, 1));
|
||||
m_lastDateTime = QDateTime::currentDateTime();
|
||||
m_firstDateTime = QDateTime(QDate(2014, 4, 18)); // the genesis block
|
||||
m_lastDateTime = QDateTime::currentDateTime().addDays(1); // tomorrow (guard against jitter and timezones)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user