diff options
author | tobtoht <thotbot@protonmail.com> | 2021-08-19 15:35:37 +0200 |
---|---|---|
committer | tobtoht <thotbot@protonmail.com> | 2021-08-19 15:35:37 +0200 |
commit | a9aaa47abb4c91f3127fcee7b3ea1603c85ba879 (patch) | |
tree | 74c380316113fd91fe70986c7371f23bf2ced85e /src/wallet/api/wallet2_api.h | |
parent | Merge pull request #7818 (diff) | |
download | monero-a9aaa47abb4c91f3127fcee7b3ea1603c85ba879.tar.xz |
wallet_api: add make_uri
Diffstat (limited to 'src/wallet/api/wallet2_api.h')
-rw-r--r-- | src/wallet/api/wallet2_api.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index ed8c55d3b..f9c421a93 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -1020,6 +1020,7 @@ struct Wallet virtual bool verifyMessageWithPublicKey(const std::string &message, const std::string &publicKey, 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; + virtual std::string make_uri(const std::string &address, const std::string &payment_id, uint64_t amount, const std::string &tx_description, const std::string &recipient_name, std::string &error) const = 0; virtual std::string getDefaultDataDir() const = 0; |