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/wallet/wallet2.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/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 68f03db72..1488c6976 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1264,6 +1264,8 @@ private: std::string get_spend_proof(const crypto::hash &txid, const std::string &message); bool check_spend_proof(const crypto::hash &txid, const std::string &message, const std::string &sig_str); + void scan_tx(const std::vector<crypto::hash> &txids); + /*! * \brief Generates a proof that proves the reserve of unspent funds * \param account_minreserve When specified, collect outputs only belonging to the given account and prove the smallest reserve above the given amount |