aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authortobtoht <thotbot@protonmail.com>2021-03-12 19:45:29 +0100
committerselsta <selsta@sent.at>2021-04-22 04:32:41 +0200
commitdef58196da207c2cb811a7267285f881a4c859e8 (patch)
tree59ccef4317ccd053e8f9cffdfb1a7e497ec7e545 /src/wallet/api/wallet.cpp
parentwallet_api: store fee for incoming txs in history (diff)
downloadmonero-def58196da207c2cb811a7267285f881a4c859e8.tar.xz
wallet_api: add seed_offset param to seed()
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index 4f923ce54..71f0891ca 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -791,11 +791,11 @@ bool WalletImpl::close(bool store)
return result;
}
-std::string WalletImpl::seed() const
+std::string WalletImpl::seed(const std::string& seed_offset) const
{
epee::wipeable_string seed;
if (m_wallet)
- m_wallet->get_seed(seed);
+ m_wallet->get_seed(seed, seed_offset);
return std::string(seed.data(), seed.size()); // TODO
}