mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 13:16:42 +00:00
core/txpool/blobpool: add log message waiting for billy
This commit is contained in:
parent
e05bf5b320
commit
284d4c29ae
1 changed files with 2 additions and 1 deletions
|
|
@ -165,11 +165,12 @@ func (q *conversionQueue) loop() {
|
||||||
|
|
||||||
case <-q.quit:
|
case <-q.quit:
|
||||||
if done != nil {
|
if done != nil {
|
||||||
interrupt.Store(1)
|
|
||||||
log.Debug("Waiting for blob proof conversion to exit")
|
log.Debug("Waiting for blob proof conversion to exit")
|
||||||
|
interrupt.Store(1)
|
||||||
<-done
|
<-done
|
||||||
}
|
}
|
||||||
for billyTasks > 0 {
|
for billyTasks > 0 {
|
||||||
|
log.Debug("Waiting for blobpool billy conversion to exit")
|
||||||
<-billyDone
|
<-billyDone
|
||||||
billyTasks--
|
billyTasks--
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue