wallet: add a getter for the filename path

This commit is contained in:
moneromooo-monero 2016-11-26 14:19:57 +00:00
parent c36cb54340
commit 657a70e004
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
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();