From 7e1d704c1dfebb176e9b95af2905a3b2144b7a2c Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Fri, 8 Mar 2024 12:09:05 +0100 Subject: [PATCH] core/txpool/legacypool: fix typo --- core/txpool/legacypool/list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/txpool/legacypool/list.go b/core/txpool/legacypool/list.go index 51f4dbc70a..3890d25657 100644 --- a/core/txpool/legacypool/list.go +++ b/core/txpool/legacypool/list.go @@ -472,7 +472,7 @@ func (l *list) Flatten() types.Transactions { return l.txs.Flatten() } -// AppendHashes flattens a nonce-sorted slice of transcations, and appends +// AppendHashes flattens a nonce-sorted slice of transacstions, and appends // the hashes to dst. The destination slice might be reallocated, and is returned. func (l *list) AppendHashes(dst []common.Hash) []common.Hash { return l.txs.AppendHashes(dst)