diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index a2677f82d6b..4580b8419be 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -2563,7 +2563,7 @@ std::string WalletImpl::make_uri(const std::string &address, const std::string & return m_wallet->make_uri(address, payment_id, amount, tx_description, recipient_name, error); } -std::string WalletImpl::make_uri(std::vector &addresses, std::vector &amounts, std::vector &recipient_names, const std::string &payment_id, const std::string &tx_description, std::string &error) const +std::string WalletImpl::make_uri(const std::vector &addresses, const std::vector &amounts, const std::vector &recipient_names, const std::string &payment_id, const std::string &tx_description, std::string &error) const { return m_wallet->make_uri(addresses, amounts, recipient_names, payment_id, tx_description, error); }