mirror of
https://github.com/monero-project/monero.git
synced 2025-12-12 01:15:33 -05:00
wallet: add a getter for the filename path
This commit is contained in:
parent
c36cb54340
commit
657a70e004
5 changed files with 14 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -64,6 +64,7 @@ public:
|
|||
bool setPassword(const std::string &password);
|
||||
std::string address() const;
|
||||
std::string integratedAddress(const std::string &payment_id) const;
|
||||
std::string path() const;
|
||||
bool store(const std::string &path);
|
||||
std::string filename() const;
|
||||
std::string keysFilename() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue