diff options
author | Jakob Lind <karl.jakob.lind@gmail.com> | 2014-08-01 15:40:18 +0200 |
---|---|---|
committer | Jakob Lind <karl.jakob.lind@gmail.com> | 2014-08-03 16:05:15 +0200 |
commit | 4fce57b9ad000354a872e2be630f194e3d12ea41 (patch) | |
tree | c3104a9fc518fbb3b40c8451b9f5e1e2bec7ff19 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #81 from tewinget/restore-fix (diff) | |
download | monero-4fce57b9ad000354a872e2be630f194e3d12ea41.tar.xz |
added seed command to get deterministic seed.
not yet password protected
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 6214f7a5c..a8e7d83a6 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -70,6 +70,7 @@ namespace cryptonote bool open_wallet(const std::string &wallet_file, const std::string& password); bool close_wallet(); + 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); |