diff options
author | Ilya Kitaev <mbg033@gmail.com> | 2016-02-21 21:18:16 +0300 |
---|---|---|
committer | Ilya Kitaev <mbg033@gmail.com> | 2016-03-16 14:27:57 +0300 |
commit | f1f9279d90bd912695307384eac92bf098e092d6 (patch) | |
tree | 2cbc0faa18bdeabbd15961586885e317f9a121f8 /src/wallet/wallet2_api.h | |
parent | tests for wallet2_api (diff) | |
download | monero-f1f9279d90bd912695307384eac92bf098e092d6.tar.xz |
get_seed() included to interface
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2_api.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index e1cd29de1..41b64d276 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -44,8 +44,11 @@ namespace Bitmonero { struct Wallet { // TODO define wallet interface (decide what needed from wallet2) - virtual ~Wallet() = 0; - virtual std::string seed() const = 0; + virtual ~Wallet() = 0; + virtual std::string seed() const = 0; + virtual std::string getSeedLanguage() const = 0; + virtual void setSeedLanguage(const std::string &arg) = 0; + }; /** |