diff --git a/txcache/constants.go b/txcache/constants.go index 5bb61a52..fe5f1993 100644 --- a/txcache/constants.go +++ b/txcache/constants.go @@ -1,6 +1,5 @@ package txcache const diagnosisMaxTransactionsToDisplay = 10000 -const diagnosisSelectionGasRequested = 10_000_000_000 const initialCapacityOfSelectionSlice = 30000 const selectionLoopDurationCheckInterval = 10 diff --git a/txcache/loggers.go b/txcache/loggers.go index d829a1e0..ecedbfec 100644 --- a/txcache/loggers.go +++ b/txcache/loggers.go @@ -6,5 +6,4 @@ var log = logger.GetOrCreate("txcache/main") var logAdd = logger.GetOrCreate("txcache/add") var logRemove = logger.GetOrCreate("txcache/remove") var logSelect = logger.GetOrCreate("txcache/select") -var logDiagnoseSelection = logger.GetOrCreate("txcache/diagnose/selection") var logDiagnoseTransactions = logger.GetOrCreate("txcache/diagnose/transactions")