Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev committed May 24, 2024
1 parent 48f4b0c commit b480b82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/node/confirming_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ void nano::confirming_set::run_batch (std::unique_lock<std::mutex> & lock)
// Confirming this block may implicitly confirm more
for (auto & block : added)
{
cemented.push_back ({ block, item });
cemented.emplace_back (block, item);
}

stats.add (nano::stat::type::confirming_set, nano::stat::detail::cemented, added.size ());
Expand Down

0 comments on commit b480b82

Please sign in to comment.