fix wrong loop index in for loop

This commit is contained in:
CJ Cobb
2022-03-10 16:55:25 -05:00
parent 8f1895c099
commit 59a0b47df4

View File

@@ -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();
}