diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-08-05 09:43:39 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-08-05 09:43:39 +0200 |
commit | 43c013a57f3bd5e0c70695c93ca6a76b78043288 (patch) | |
tree | 0a859060427ffd9881385d7e27eff0547507ffb0 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #81 from tewinget/restore-fix (diff) | |
parent | added view_key to wallet RPC command query_key (diff) | |
download | monero-43c013a57f3bd5e0c70695c93ca6a76b78043288.tar.xz |
Merge pull request #86 from jakoblind/seed
Query view key and seed
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 6214f7a5c..41197b4bb 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -70,6 +70,8 @@ namespace cryptonote bool open_wallet(const std::string &wallet_file, const std::string& password); bool close_wallet(); + bool viewkey(const std::vector<std::string> &args = std::vector<std::string>()); + bool seed(const std::vector<std::string> &args = std::vector<std::string>()); bool help(const std::vector<std::string> &args = std::vector<std::string>()); bool start_mining(const std::vector<std::string> &args); bool stop_mining(const std::vector<std::string> &args); |