mirror of
https://github.com/monero-project/monero.git
synced 2026-01-01 07:26:15 -08:00
Merge pull request #1634
99f58437 Fix invalid + of std::string and int (Timothy D. Prime)
This commit is contained in:
@@ -204,7 +204,7 @@ namespace cryptonote
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
res.status = "Error retrieving block at height " + height;
|
||||
res.status = "Error retrieving block at height " + std::to_string(height);
|
||||
return true;
|
||||
}
|
||||
std::list<transaction> txs;
|
||||
|
||||
Reference in New Issue
Block a user