mirror of
https://github.com/btcsuite/btcd.git
synced 2024-11-19 01:40:07 +01:00
blockchain: remove trailing ":" and space on utxocache log
This commit is contained in:
parent
6b197d38d7
commit
689ac6b6de
@ -234,7 +234,7 @@ func newUtxoCache(db database.DB, maxTotalMemoryUsage uint64) *utxoCache {
|
||||
numMaxElements := calculateMinEntries(int(maxTotalMemoryUsage), bucketSize+avgEntrySize)
|
||||
numMaxElements -= 1
|
||||
|
||||
log.Infof("Pre-alloacting for %d MiB: ", maxTotalMemoryUsage/(1024*1024)+1)
|
||||
log.Infof("Pre-alloacting for %d MiB", maxTotalMemoryUsage/(1024*1024)+1)
|
||||
|
||||
m := make(map[wire.OutPoint]*UtxoEntry, numMaxElements)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user