decred / dcrd

Decred daemon in Go (golang).
https://decred.org
ISC License
731 stars 289 forks source link

mixing: Prealloc buffers #3361

Closed jrick closed 1 month ago

jrick commented 1 month ago

The buffers written to during signature creation and validation have a known constant size. Preallocate these buffers to reduce the total number of allocations that are needed as fmt.Sprintf writes to the buffer.