forked from Public/monero-gui
libwalletqt: add make_uri function
This commit is contained in:
@@ -925,6 +925,12 @@ bool Wallet::parse_uri(const QString &uri, QString &address, QString &payment_id
|
||||
return res;
|
||||
}
|
||||
|
||||
QString Wallet::make_uri(const QString &address, const quint64 &amount, const QString &tx_description, const QString &recipient_name) const
|
||||
{
|
||||
std::string error;
|
||||
return QString::fromStdString(m_walletImpl->make_uri(address.toStdString(), "", amount, tx_description.toStdString(), recipient_name.toStdString(), error));
|
||||
}
|
||||
|
||||
bool Wallet::rescanSpent()
|
||||
{
|
||||
QMutexLocker locker(&m_asyncMutex);
|
||||
|
||||
Reference in New Issue
Block a user