From b8be0dace866c6ca1995eb2f344c2beaf0790d5c Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 9 Feb 2023 02:20:15 -0800 Subject: [PATCH] added log line to print the txArrivalWait value into the fetchers go routine process --- eth/fetcher/tx_fetcher.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eth/fetcher/tx_fetcher.go b/eth/fetcher/tx_fetcher.go index 7b55439011..7d85e50bd2 100644 --- a/eth/fetcher/tx_fetcher.go +++ b/eth/fetcher/tx_fetcher.go @@ -349,6 +349,9 @@ func (f *TxFetcher) loop() { waitTrigger = make(chan struct{}, 1) timeoutTrigger = make(chan struct{}, 1) ) + + log.Info("TxFetcher", "txArrivalWait", f.txArrivalWait.String()) + for { select { case ann := <-f.notify: