Skip to content
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.

Commit

Permalink
made boostrapping less invasive
Browse files Browse the repository at this point in the history
  • Loading branch information
Brord van Wierst committed May 12, 2020
1 parent 5b025bc commit b4b3781
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ private void bootStrapSolidMilestones() throws Exception {
addMilestoneCandidate(hash, index);
}
}
if (processed % 1000 == 0 || processed % milestoneTransactions.size() == 0){
if (processed % (milestoneTransactions.size()/10) == 0 || processed % milestoneTransactions.size() == 0){
log.info("Bootstrapping milestones: [ " + processed + " / " + milestoneTransactions.size() + " ]");
}
} catch(Exception e) {
Expand Down

0 comments on commit b4b3781

Please sign in to comment.