From 73fc96c6970b1855cabe4a58620da1c99efc9ac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Fri, 2 Feb 2024 19:44:08 +0200 Subject: [PATCH] core/txpool: minor typo fixes --- core/txpool/subpool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/txpool/subpool.go b/core/txpool/subpool.go index bbc52632a9..eaab80b7aa 100644 --- a/core/txpool/subpool.go +++ b/core/txpool/subpool.go @@ -46,8 +46,8 @@ type LazyTransaction struct { // maintained by the transaction pool. // // Note, the method will *not* cache the retrieved transaction if the original -// pool has not cached it. The idea being that if the tx was too big to insert -// originally, silently saving it will cause more toruble down the line (and +// pool has not cached it. The idea being, that if the tx was too big to insert +// originally, silently saving it will cause more trouble down the line (and // indeed seems to have caused a memory bloat in the original implementation // which did just that). func (ltx *LazyTransaction) Resolve() *types.Transaction {