diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-08-19 20:59:44 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-08-19 21:11:48 +0100 |
commit | 6c995710d8cdc8dbbb3da2d11dc8dfe335074ec9 (patch) | |
tree | ad354dd1a0f409e9acfa8959d4faa382d4f94bd1 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #379 (diff) | |
download | monero-6c995710d8cdc8dbbb3da2d11dc8dfe335074ec9.tar.xz |
make tx keys available to the user
They are also stored in the cache file, to be retrieved using
a new get_tx_key command.
Diffstat (limited to '')
-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 8aca93210..7db56cdec 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -122,6 +122,7 @@ namespace cryptonote bool set_variable(const std::vector<std::string> &args); bool rescan_spent(const std::vector<std::string> &args); bool set_log(const std::vector<std::string> &args); + bool get_tx_key(const std::vector<std::string> &args); uint64_t get_daemon_blockchain_height(std::string& err); bool try_connect_to_daemon(); |