Skip to content

Commit

Permalink
fix pillar vote logs on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusKysel committed Jul 3, 2024
1 parent 3fa9c21 commit 357be88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ PillarChainManager::PillarChainManager(const FicusHardforkConfig& ficus_hf_confi
current_pillar_block_vote_counts_{},
pillar_votes_{},
mutex_{} {
LOG_OBJECTS_CREATE("PILLAR_CHAIN");

if (const auto vote = db_->getOwnPillarBlockVote(); vote) {
addVerifiedPillarVote(vote);
}
Expand All @@ -39,8 +41,6 @@ PillarChainManager::PillarChainManager(const FicusHardforkConfig& ficus_hf_confi
addVerifiedPillarVote(vote);
}
}

LOG_OBJECTS_CREATE("PILLAR_CHAIN");
}

std::shared_ptr<PillarBlock> PillarChainManager::createPillarBlock(
Expand Down

0 comments on commit 357be88

Please sign in to comment.