mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 13:07:17 +00:00
save
This commit is contained in:
parent
f7bbbb765f
commit
6ed147b327
@ -3,6 +3,7 @@ package exec22
|
||||
import (
|
||||
"container/heap"
|
||||
"context"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
"github.com/holiman/uint256"
|
||||
@ -327,9 +328,13 @@ func (q *ResultsQueue) Drain(ctx context.Context) error {
|
||||
// return nil
|
||||
//}
|
||||
q.Lock()
|
||||
msg := []uint64{}
|
||||
for _, t := range *(q.results) {
|
||||
log.Warn("[dbg] before drain resultqueue", "txnum", t.TxNum)
|
||||
if t.TxNum > 9299153 {
|
||||
msg = append(msg, t.TxNum)
|
||||
}
|
||||
}
|
||||
log.Warn("[dbg] before drain resultqueue", "txnum", strings.Join(msg))
|
||||
q.Unlock()
|
||||
|
||||
select {
|
||||
|
Loading…
Reference in New Issue
Block a user