2016-06-08 10:53:24 +00:00
|
|
|
#include "PendingTransaction.h"
|
|
|
|
|
2016-06-28 19:37:14 +00:00
|
|
|
|
2016-06-08 10:53:24 +00:00
|
|
|
PendingTransaction::Status PendingTransaction::status() const
|
|
|
|
{
|
|
|
|
return static_cast<Status>(m_pimpl->status());
|
|
|
|
}
|
|
|
|
|
|
|
|
QString PendingTransaction::errorString() const
|
|
|
|
{
|
|
|
|
return QString::fromStdString(m_pimpl->errorString());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PendingTransaction::commit()
|
|
|
|
{
|
|
|
|
return m_pimpl->commit();
|
|
|
|
}
|
|
|
|
|
|
|
|
quint64 PendingTransaction::amount() const
|
|
|
|
{
|
|
|
|
return m_pimpl->amount();
|
|
|
|
}
|
|
|
|
|
|
|
|
quint64 PendingTransaction::dust() const
|
|
|
|
{
|
|
|
|
return m_pimpl->dust();
|
|
|
|
}
|
|
|
|
|
|
|
|
quint64 PendingTransaction::fee() const
|
|
|
|
{
|
|
|
|
return m_pimpl->fee();
|
|
|
|
}
|
|
|
|
|
|
|
|
PendingTransaction::PendingTransaction(Bitmonero::PendingTransaction *pt, QObject *parent)
|
|
|
|
: QObject(parent), m_pimpl(pt)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|