Remove const

This commit is contained in:
Bart
2026-02-03 11:07:04 -05:00
parent 9f6ec0adf7
commit 6eb6df9cd9

View File

@@ -70,7 +70,7 @@ DatabaseNodeImp::fetchBatch(std::vector<uint256> const& hashes)
batch.push_back(&hash);
}
std::vector<std::shared_ptr<NodeObject>> const results = backend_->fetchBatch(batch).first;
auto results = backend_->fetchBatch(batch).first;
for (size_t i = 0; i < results.size(); ++i)
{
if (!results[i])