663 | @@ -664,7 +664,7 @@ QVariant TransactionTableModel::headerData(int section, Qt::Orientation orientat
664 | QModelIndex TransactionTableModel::index(int row, int column, const QModelIndex &parent) const
665 | {
666 | Q_UNUSED(parent);
667 | - TransactionRecord* data = priv->index(walletModel->wallet(), walletModel->clientModel().getBestBlockHash(), row);
668 | + TransactionRecord* data = priv->index(walletModel->wallet(), walletModel->getLastBlockProcessed(), row);
9735b0750bc1e510a5ca6764f9d3cdca5cc7f760
nit, assert block hash is not null in TransactionRecord::statusUpdateNeeded.
@promag
nit, assert block hash is not null in TransactionRecord::statusUpdateNeeded.
Does this suggestion implies that status.needsUpdate should be the first operand of OR in TransactionRecord::statusUpdateNeeded()?
No, I don't mean to change that.