mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-14 04:16:33 +02:00
Merge pull request #110
4f386e0
Fix erroneous DateTime & small README change (dEBRUYNE-1)
This commit is contained in:
commit
88cb06dc8a
@ -107,7 +107,7 @@ TODO
|
||||
|
||||
7. Before running the GUI, it's recommended that you have the Monero daemon running in the background.
|
||||
|
||||
`./monerod --rpc-bind-port 38081`
|
||||
`./monerod`
|
||||
|
||||
8. Run the GUI client.
|
||||
|
||||
|
@ -29,8 +29,8 @@ QList<TransactionInfo *> TransactionHistory::getAll() const
|
||||
qDeleteAll(m_tinfo);
|
||||
m_tinfo.clear();
|
||||
|
||||
QDateTime firstDateTime = QDateTime::currentDateTime().addDays(1); // tomorrow (guard against jitter and timezones)
|
||||
QDateTime lastDateTime = QDateTime(QDate(2014, 4, 18)); // the genesis block
|
||||
QDateTime firstDateTime = QDateTime(QDate(2014, 4, 18)); // the genesis block
|
||||
QDateTime lastDateTime = QDateTime::currentDateTime().addDays(1); // tomorrow (guard against jitter and timezones)
|
||||
|
||||
TransactionHistory * parent = const_cast<TransactionHistory*>(this);
|
||||
for (const auto i : m_pimpl->getAll()) {
|
||||
|
Loading…
Reference in New Issue
Block a user