diff options
| author | dEBRUYNE-1 <dEBRUYNE-1@users.noreply.github.com> | 2016-11-05 16:32:30 +0100 |
|---|---|---|
| committer | dEBRUYNE-1 <dEBRUYNE-1@users.noreply.github.com> | 2016-11-05 16:32:30 +0100 |
| commit | 4f386e02697efe955a951d433936a672067e32c5 (patch) | |
| tree | e2dde06ea440911d622211ef042fe8c7394ea546 | |
| parent | c9bb2f571895edb6a01ca5528c944d09bc222823 (diff) | |
| download | monzero-gui-4f386e02697efe955a951d433936a672067e32c5.tar.gz monzero-gui-4f386e02697efe955a951d433936a672067e32c5.tar.xz monzero-gui-4f386e02697efe955a951d433936a672067e32c5.zip | |
Fix erroneous DateTime & small README change
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | src/libwalletqt/TransactionHistory.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -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. diff --git a/src/libwalletqt/TransactionHistory.cpp b/src/libwalletqt/TransactionHistory.cpp index defe561c..bf9cbeb5 100644 --- a/src/libwalletqt/TransactionHistory.cpp +++ b/src/libwalletqt/TransactionHistory.cpp @@ -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()) { |
