Wallet::paymentIdValid

This commit is contained in:
Ilya Kitaev 2016-06-24 16:17:06 +03:00
parent 18dd507024
commit 00ed12bd6c
2 changed files with 7 additions and 0 deletions

View file

@ -144,6 +144,12 @@ std::string Wallet::genPaymentId()
}
bool Wallet::paymentIdValid(const string &paiment_id)
{
crypto::hash8 pid;
return tools::wallet2::parse_short_payment_id(paiment_id, pid);
}
///////////////////////// WalletImpl implementation ////////////////////////
WalletImpl::WalletImpl(bool testnet)

View file

@ -175,6 +175,7 @@ struct Wallet
static uint64_t amountFromString(const std::string &amount);
static uint64_t amountFromDouble(double amount);
static std::string genPaymentId();
static bool paymentIdValid(const std::string &paiment_id);
// TODO?
// virtual uint64_t unlockedDustBalance() const = 0;