mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-11 14:33:52 +00:00
added log line to print the txArrivalWait value into the fetchers go routine process
This commit is contained in:
parent
cfb9eb3d19
commit
b8be0dace8
1 changed files with 3 additions and 0 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue