Merge pull request #1634

99f58437 Fix invalid + of std::string and int (Timothy D. Prime)
This commit is contained in:
Riccardo Spagni
2017-02-02 19:43:05 +02:00
2 changed files with 4 additions and 4 deletions

View File

@@ -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;