-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblockWorker.go
37 lines (33 loc) · 867 Bytes
/
blockWorker.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package work
import (
"sync"
log "github.com/mgutz/logxi/v1"
"github.com/onrik/ethrpc"
)
type BlockWorker struct {
client *ethrpc.EthRPC
jobs chan *Job
result chan *Job
failedJobs chan *Job
stats chan *Stat
wt *sync.WaitGroup
}
func (w *BlockWorker) doWork() {
for job := range w.jobs {
w.stats <- &Stat{FetchedBlock: true, BlockHeight: job.BlockHeight}
block, err := w.client.EthGetBlockByNumber(job.BlockHeight, true)
if err != nil {
w.failedJobs <- job
log.Error("failed to get block", "blockNumber", job.BlockHeight, "err", err.Error())
continue
}
if log.IsDebug() {
log.Debug("successfully got block", "blockNumber", block.Number)
}
for _, tx := range block.Transactions {
w.result <- &Job{TxHash: tx.Hash, Timestamp: block.Timestamp}
}
}
log.Info("block worker finished")
w.wt.Done()
}