added log line to print the txArrivalWait value into the fetchers go routine process

This commit is contained in:
Alex 2023-02-09 02:20:15 -08:00
parent cfb9eb3d19
commit b8be0dace8

View file

@ -349,6 +349,9 @@ func (f *TxFetcher) loop() {
waitTrigger = make(chan struct{}, 1) waitTrigger = make(chan struct{}, 1)
timeoutTrigger = make(chan struct{}, 1) timeoutTrigger = make(chan struct{}, 1)
) )
log.Info("TxFetcher", "txArrivalWait", f.txArrivalWait.String())
for { for {
select { select {
case ann := <-f.notify: case ann := <-f.notify: