diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-10-12 00:13:05 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-10-14 17:26:22 +0100 |
commit | 1ce2621a731b46d546267d5762777df34a17a82c (patch) | |
tree | b344311b0bb00026910d96311bea399e9e5d4561 /src/simplewallet/simplewallet.h | |
parent | simplewallet: hide start_mining behind --trusted-daemon (diff) | |
download | monero-1ce2621a731b46d546267d5762777df34a17a82c.tar.xz |
simplewallet: add a check_tx_key command
It allows one to check the amount of monero sent to a particular
address in a particular transaction, given that transaction's tx key
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 5a5401928..78f061130 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -124,6 +124,7 @@ namespace cryptonote 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); + bool check_tx_key(const std::vector<std::string> &args); uint64_t get_daemon_blockchain_height(std::string& err); bool try_connect_to_daemon(); |