diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-01-08 16:47:42 -0800 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-01-08 16:47:42 -0800 |
commit | c6ec93962689393291df0ac89267139f5665a44e (patch) | |
tree | 57bb592c300378ee3bef750d683ed81c4da8cca1 /src/wallet/wallet2_api.h | |
parent | Merge pull request #1537 (diff) | |
parent | Add parse_uri to wallet2_api (diff) | |
download | monero-c6ec93962689393291df0ac89267139f5665a44e.tar.xz |
Merge pull request #1542
60fe1b61 Add parse_uri to wallet2_api (MoroccanMalinois)
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r-- | src/wallet/wallet2_api.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h index e5707ad09..fcb4ef2e8 100644 --- a/src/wallet/wallet2_api.h +++ b/src/wallet/wallet2_api.h @@ -469,6 +469,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; }; /** |