bsc/miner
setunapo 139eb3f467 worker: fix a bug of the delay timer.
`fillTransactions` will call `commitTransactions` twice, if the delay
timer is expired during the first call, it will make the delay timer
never be triggered in the second commitTransactions call.
Pseudo code:
    x := time.NewTimer(time.Second)
    <-x.C
    fmt.Println("read delay 1")
    <-x.C
    fmt.Println("read delay 2")  // will never hit
2022-11-17 11:42:03 +08:00
..
stress all: separate catalyst package (#24280) 2022-01-31 14:22:35 +02:00
miner_test.go eth, miner: use miner for post-merge block production (#23256) 2022-01-24 09:19:52 +02:00
miner.go worker: remove pre-seal empty block 2022-11-16 17:57:44 +08:00
unconfirmed_test.go all: remove redundant conversions and import names (#21903) 2020-11-25 21:00:23 +01:00
unconfirmed.go all: replace RWMutex with Mutex in places where RLock is not used (#21622) 2020-10-13 10:58:41 +02:00
worker_test.go worker: remove the code of resubmit interval adjust 2022-11-15 13:26:11 +08:00
worker.go worker: fix a bug of the delay timer. 2022-11-17 11:42:03 +08:00