Merge pull request #1380

657a70e0 wallet: add a getter for the filename path (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-12-04 22:02:40 +02:00
commit 3d533d1037
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
5 changed files with 14 additions and 0 deletions

View file

@ -399,6 +399,11 @@ std::string WalletImpl::integratedAddress(const std::string &payment_id) const
return m_wallet->get_account().get_public_integrated_address_str(pid, m_wallet->testnet());
}
std::string WalletImpl::path() const
{
return m_wallet->path();
}
bool WalletImpl::store(const std::string &path)
{
clearStatus();