From e43d1dd7ca6dcd2f66ab60075c1750047f7956b1 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Thu, 13 Apr 2017 14:50:23 -0700 Subject: [PATCH] utxonursery: log process of catch up graduation on restart --- utxonursery.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utxonursery.go b/utxonursery.go index ab60fdfc..ea6a974c 100644 --- a/utxonursery.go +++ b/utxonursery.go @@ -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 }