diff options
| author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-11-26 14:19:57 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-11-26 14:19:57 +0000 |
| commit | 657a70e004a6066993ab18cee3fc343a65d82b8a (patch) | |
| tree | 8d831280c48fdfaca061b8b3d3e6199be8b0fbe5 /src/wallet/api/wallet.cpp | |
| parent | c36cb5434059ed53daf947b189343ac0bd8f31d8 (diff) | |
| download | monzero-core-657a70e004a6066993ab18cee3fc343a65d82b8a.tar.gz monzero-core-657a70e004a6066993ab18cee3fc343a65d82b8a.tar.xz monzero-core-657a70e004a6066993ab18cee3fc343a65d82b8a.zip | |
wallet: add a getter for the filename path
Diffstat (limited to 'src/wallet/api/wallet.cpp')
| -rw-r--r-- | src/wallet/api/wallet.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 215b61aef..fc405a6b1 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -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(); |
