remove comment incorrectly stating allocation by NewTxRecordSet

This commit is contained in:
William Banfield
2022-03-14 17:48:54 -04:00
parent 7c7307961b
commit 5a5167974f

View File

@@ -128,8 +128,6 @@ func NewTxRecordSet(trs []*abci.TxRecord) TxRecordSet {
txrSet.all = make([]Tx, len(trs))
for i, tr := range trs {
// A single allocation is performed per transaction from the list of TxRecords
// on the line below.
txrSet.all[i] = Tx(tr.Tx)
// The following set of assignments do not allocate new []byte, they create