aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2_api.h
diff options
context:
space:
mode:
authorMoroccanMalinois <MoroccanMalinois@protonmail.com>2017-01-08 22:53:24 +0000
committerMoroccanMalinois <MoroccanMalinois@protonmail.com>2017-01-08 22:53:24 +0000
commit60fe1b61e04db33c9a5147f950a860a08f9ffe38 (patch)
tree9f3eafa880ef24774149245b920c4d15652ba08b /src/wallet/wallet2_api.h
parentMerge pull request #1487 (diff)
downloadmonero-60fe1b61e04db33c9a5147f950a860a08f9ffe38.tar.xz
Add parse_uri to wallet2_api
Diffstat (limited to '')
-rw-r--r--src/wallet/wallet2_api.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h
index 2e1d95b58..7cfeef080 100644
--- a/src/wallet/wallet2_api.h
+++ b/src/wallet/wallet2_api.h
@@ -468,6 +468,8 @@ struct Wallet
* \return true if the signature verified, false otherwise
*/
virtual bool verifySignedMessage(const std::string &message, const std::string &addres, const std::string &signature) const = 0;
+
+ virtual bool parse_uri(const std::string &uri, std::string &address, std::string &payment_id, uint64_t &amount, std::string &tx_description, std::string &recipient_name, std::vector<std::string> &unknown_parameters, std::string &error) = 0;
};
/**