From 741e0962bef3133d83b49e294cb1deae4749708b Mon Sep 17 00:00:00 2001 From: Ori Newman Date: Wed, 6 Jan 2021 10:31:42 +0200 Subject: [PATCH] Remove diffs from restoreUTXO logs (#1354) Co-authored-by: stasatdaglabs <39559713+stasatdaglabs@users.noreply.github.com> --- .../processes/consensusstatemanager/calculate_past_utxo.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/domain/consensus/processes/consensusstatemanager/calculate_past_utxo.go b/domain/consensus/processes/consensusstatemanager/calculate_past_utxo.go index eccd1cc80..6c6ba244a 100644 --- a/domain/consensus/processes/consensusstatemanager/calculate_past_utxo.go +++ b/domain/consensus/processes/consensusstatemanager/calculate_past_utxo.go @@ -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 } }