Remove diffs from restoreUTXO logs (#1354)

Co-authored-by: stasatdaglabs <39559713+stasatdaglabs@users.noreply.github.com>
This commit is contained in:
Ori Newman 2021-01-06 10:31:42 +02:00 committed by GitHub
parent 6279db2bf1
commit 741e0962be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,8 +77,7 @@ func (csm *consensusStateManager) restorePastUTXO(blockHash *externalapi.DomainH
}
if !exists {
log.Debugf("Block %s does not have a UTXO diff child, "+
"meaning we reached the virtual. Returning the collected "+
"UTXO diffs: %s", nextBlockHash, utxoDiffs)
"meaning we reached the virtual", nextBlockHash)
break
}
@ -88,8 +87,7 @@ func (csm *consensusStateManager) restorePastUTXO(blockHash *externalapi.DomainH
}
if nextBlockHash == nil {
log.Debugf("Block %s does not have a UTXO diff child, "+
"meaning we reached the virtual. Returning the collected "+
"UTXO diffs: %s", nextBlockHash, utxoDiffs)
"meaning we reached the virtual", nextBlockHash)
break
}
}