Transfer: disable Send button if the payment id is invalid

This commit is contained in:
moneromooo.monero
2016-10-16 13:57:56 +01:00
parent 05046a5f21
commit 51f89a8402
3 changed files with 8 additions and 1 deletions

View File

@@ -149,6 +149,11 @@ quint64 WalletManager::amountFromDouble(double amount) const
return Bitmonero::Wallet::amountFromDouble(amount);
}
bool WalletManager::paymentIdValid(const QString &payment_id) const
{
return Bitmonero::Wallet::paymentIdValid(payment_id.toStdString());
}
void WalletManager::setLogLevel(int logLevel)
{
Bitmonero::WalletManagerFactory::setLogLevel(logLevel);