mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 14:38:29 +01:00
show last few transactions on overview page
This commit is contained in:
@@ -578,6 +578,10 @@ QVariant TransactionTableModel::data(const QModelIndex &index, int role) const
|
||||
{
|
||||
return llabs(rec->credit + rec->debit);
|
||||
}
|
||||
else if (role == AmountRole)
|
||||
{
|
||||
return rec->credit + rec->debit;
|
||||
}
|
||||
else if (role == TxIDRole)
|
||||
{
|
||||
return QString::fromStdString(rec->getTxID());
|
||||
|
||||
Reference in New Issue
Block a user