mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-22 12:45:52 +00:00
fix wrong loop index in for loop
This commit is contained in:
@@ -273,7 +273,7 @@ BackendInterface::fetchLedgerPage(
|
||||
std::stringstream msg;
|
||||
for (size_t j = 0; j < objects.size(); ++j)
|
||||
{
|
||||
msg << " - " << ripple::strHex(keys[i]);
|
||||
msg << " - " << ripple::strHex(keys[j]);
|
||||
}
|
||||
BOOST_LOG_TRIVIAL(error) << __func__ << msg.str();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user