diff options
author | tobtoht <thotbot@protonmail.com> | 2021-03-12 19:45:29 +0100 |
---|---|---|
committer | selsta <selsta@sent.at> | 2021-04-22 04:32:41 +0200 |
commit | def58196da207c2cb811a7267285f881a4c859e8 (patch) | |
tree | 59ccef4317ccd053e8f9cffdfb1a7e497ec7e545 /src/wallet/api/wallet.h | |
parent | wallet_api: store fee for incoming txs in history (diff) | |
download | monero-def58196da207c2cb811a7267285f881a4c859e8.tar.xz |
wallet_api: add seed_offset param to seed()
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index e501d3943..917f512e5 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -81,7 +81,7 @@ public: const std::string &device_name); Device getDeviceType() const override; bool close(bool store = true); - std::string seed() const override; + std::string seed(const std::string& seed_offset = "") const override; std::string getSeedLanguage() const override; void setSeedLanguage(const std::string &arg) override; // void setListener(Listener *) {} |