From a0ddb5a023e9f50bac8b45e950cfdc6ce4f3d4ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Mon, 19 Feb 2024 18:46:09 +0200 Subject: [PATCH] core/txpool: fix typo, no farming --- core/txpool/subpool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/txpool/subpool.go b/core/txpool/subpool.go index 8f102f5e12..9881ed1b8f 100644 --- a/core/txpool/subpool.go +++ b/core/txpool/subpool.go @@ -75,7 +75,7 @@ type AddressReserver func(addr common.Address, reserve bool) error // // Note, the entries here are not arbitrary useful filters, rather each one has // a very specific call site in mind and each one can be evaluated very cheaply -// by the pool implementations. Only add new ones that satisfy those contraits. +// by the pool implementations. Only add new ones that satisfy those constraints. type PendingFilter struct { MinTip *uint256.Int // Minimum miner tip required to include a transaction BaseFee *uint256.Int // Minimum 1559 basefee needed to include a transaction