Skip to content

Commit

Permalink
fix const keyword dropping error
Browse files Browse the repository at this point in the history
  • Loading branch information
U65535F committed Feb 12, 2025
1 parent a647610 commit c1964b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/wallet2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14991,7 +14991,7 @@ std::string wallet2::make_uri(const std::vector<std::string> &addresses, const s
bool recipients_used = false;

for (size_t i = 0; i < addresses.size(); i++) {
std::string &address = addresses[i];
const std::string &address = addresses[i];
cryptonote::address_parse_info info;
if (!get_account_address_from_str(info, nettype(), address))
{
Expand Down

0 comments on commit c1964b1

Please sign in to comment.