From 241201cf0eebe1abfd00d25ecfd432d8a693fae6 Mon Sep 17 00:00:00 2001 From: Daniel Liu Date: Wed, 8 May 2024 13:59:51 +0800 Subject: [PATCH] core: fixed typo (#17214) --- core/tx_pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tx_pool.go b/core/tx_pool.go index 92b1b3cce6..46313dbb0a 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -151,7 +151,7 @@ type TxPoolConfig struct { PriceLimit uint64 // Minimum gas price to enforce for acceptance into the pool PriceBump uint64 // Minimum price bump percentage to replace an already existing transaction (nonce) - AccountSlots uint64 // Minimum number of executable transaction slots guaranteed per account + AccountSlots uint64 // Number of executable transaction slots guaranteed per account GlobalSlots uint64 // Maximum number of executable transaction slots for all accounts AccountQueue uint64 // Maximum number of non-executable transaction slots permitted per account GlobalQueue uint64 // Maximum number of non-executable transaction slots for all accounts