diff options
author | Horia Mihai David <david.horiamihai@gmail.com> | 2021-01-11 22:20:12 +0100 |
---|---|---|
committer | hMihaiDavid <24855110+hMihaiDavid@users.noreply.github.com> | 2021-02-17 20:25:55 +0100 |
commit | 186271e5d1633964a37220e3b6c1aebb4f691fd9 (patch) | |
tree | dab728ded4b39ee6f85909c2ba7d21b75525eb63 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #7285 (diff) | |
download | monero-186271e5d1633964a37220e3b6c1aebb4f691fd9.tar.xz |
monero-wallet-cli: Added command scan_tx
To implement this feature, the wallet2::scan_tx API was implemented.
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 61104c87f..af654e0dd 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -158,6 +158,7 @@ namespace cryptonote bool set_credits_target(const std::vector<std::string> &args = std::vector<std::string>()); bool help(const std::vector<std::string> &args = std::vector<std::string>()); bool apropos(const std::vector<std::string> &args); + bool scan_tx(const std::vector<std::string> &args); bool start_mining(const std::vector<std::string> &args); bool stop_mining(const std::vector<std::string> &args); bool set_daemon(const std::vector<std::string> &args); |