Skip to content

Commit

Permalink
add const keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
U65535F committed Feb 12, 2025
1 parent 952486e commit cc6deca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/api/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::string> &addresses, std::vector<std::uint64_t> &amounts, std::vector<std::string> &recipient_names, const std::string &payment_id, const std::string &tx_description, std::string &error) const
std::string WalletImpl::make_uri(const std::vector<std::string> &addresses, const std::vector<std::uint64_t> &amounts, const std::vector<std::string> &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);
}
Expand Down

0 comments on commit cc6deca

Please sign in to comment.