comment tx fix

This commit is contained in:
William Banfield
2022-03-11 13:21:46 -05:00
parent d3c4f7c7d9
commit 0ca101912f
+1 -1
View File
@@ -85,7 +85,7 @@ func ToTxs(txs [][]byte) Txs {
return txBzs
}
// TxRecordsToTxs coverts from the abci Tx type to the a Txs type.
// TxRecordsToTxs converts from the abci Tx type to the the Txs type.
func TxRecordsToTxs(trs []*abci.TxRecord) Txs {
txs := make([]Tx, len(trs))
for i, tr := range trs {