Skip to content

Commit

Permalink
adjust log level for highest committed block in GetUtxoViewandUtxoOps…
Browse files Browse the repository at this point in the history
…AtBlockHash
  • Loading branch information
lazynina committed Dec 12, 2024
1 parent 969cb1c commit a8384cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pos_blockchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -1929,7 +1929,7 @@ func (bc *Blockchain) GetUtxoViewAndUtxoOpsAtBlockHash(blockHash BlockHash, bloc
}

highestCommittedBlock, exists := bc.GetCommittedTip()
glog.Infof("Highest committed block: %v", highestCommittedBlock)
glog.V(4).Infof("Highest committed block: %v", highestCommittedBlock)
if !exists || highestCommittedBlock == nil {
return nil, errors.Errorf("GetUtxoViewAndUtxoOpsAtBlockHash: No committed blocks found")
}
Expand Down

0 comments on commit a8384cb

Please sign in to comment.