mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-10 13:57:26 -04:00
Transfer: display number of split tx in transaction confirmation popup
This commit is contained in:
@@ -31,15 +31,22 @@ quint64 PendingTransaction::fee() const
|
||||
return m_pimpl->fee();
|
||||
}
|
||||
|
||||
QList<QString> PendingTransaction::txid() const
|
||||
|
||||
QStringList PendingTransaction::txid() const
|
||||
{
|
||||
QList<QString> list;
|
||||
QStringList list;
|
||||
std::vector<std::string> txid = m_pimpl->txid();
|
||||
for (const auto &t: txid)
|
||||
list.append(QString::fromStdString(t));
|
||||
return list;
|
||||
}
|
||||
|
||||
|
||||
quint64 PendingTransaction::txCount() const
|
||||
{
|
||||
return m_pimpl->txCount();
|
||||
}
|
||||
|
||||
PendingTransaction::PendingTransaction(Bitmonero::PendingTransaction *pt, QObject *parent)
|
||||
: QObject(parent), m_pimpl(pt)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user