From 0ca101912fcf956bebd31489e1711c0decc39657 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Fri, 11 Mar 2022 13:21:46 -0500 Subject: [PATCH] comment tx fix --- types/tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/tx.go b/types/tx.go index 659093059..d142fb82a 100644 --- a/types/tx.go +++ b/types/tx.go @@ -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 {