From f7c35e70b92358558087d88452d02d9c70a4a33a Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 15 Mar 2022 10:38:26 -0400 Subject: [PATCH] remove erroneous comment over ToSliceOfBytes --- types/tx.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/types/tx.go b/types/tx.go index 1baa8ad70..265f24cb2 100644 --- a/types/tx.go +++ b/types/tx.go @@ -72,10 +72,6 @@ func (txs Txs) Less(i, j int) bool { } // ToSliceOfBytes converts a Txs to slice of byte slices. -// -// NOTE: This method should become obsolete once Txs is switched to [][]byte. -// ref: #2603 -// TODO This function is to disappear when TxRecord is introduced func (txs Txs) ToSliceOfBytes() [][]byte { txBzs := make([][]byte, len(txs)) for i := 0; i < len(txs); i++ {