Skip to content

Commit

Permalink
utxonursery: log process of catch up graduation on restart
Browse files Browse the repository at this point in the history
  • Loading branch information
Roasbeef committed Apr 13, 2017
1 parent b51a0eb commit e43d1dd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions utxonursery.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ func (u *utxoNursery) catchUpKindergarten() error {
// Loop through and check for graduating outputs at each of the missed
// block heights.
for graduationHeight := lastGraduatedHeight + 1; graduationHeight <= uint32(bestHeight); graduationHeight++ {
utxnLog.Debugf("Attempting to graduate outputs at height=%v",
graduationHeight)

if err := u.graduateKindergarten(graduationHeight); err != nil {
return err
}
Expand Down

0 comments on commit e43d1dd

Please sign in to comment.