Skip to content

Commit

Permalink
Fix incorrect tag hash when requesting blocks by frontier (#4845)
Browse files Browse the repository at this point in the history
  • Loading branch information
simpago authored Feb 18, 2025
1 parent d45a77d commit 20e5f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/node/bootstrap/bootstrap_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ bool nano::bootstrap_service::request (nano::account account, size_t count, std:
{
tag.type = query_type::blocks_by_hash;
tag.start = conf_info->frontier;
tag.hash = conf_info->height;
tag.hash = conf_info->frontier;

logger.debug (nano::log::type::bootstrap, "Requesting blocks for {} starting from confirmation frontier: {} (optimistic: {})",
account,
Expand Down

0 comments on commit 20e5f56

Please sign in to comment.