mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-28 13:41:21 +00:00
simplify indexer service main loop
This commit is contained in:
parent
6f7333fd5f
commit
5e3a23df6d
@ -343,6 +343,7 @@ func NewNode(config *cfg.Config,
|
||||
}
|
||||
|
||||
indexerService := txindex.NewIndexerService(txIndexer, eventBus)
|
||||
indexerService.SetLogger(logger.With("module", "txindex"))
|
||||
|
||||
// run the profile server
|
||||
profileHost := config.ProfListenAddress
|
||||
|
@ -41,32 +41,24 @@ func (is *IndexerService) OnStart() error {
|
||||
}
|
||||
|
||||
go func() {
|
||||
var numTxs, got int64
|
||||
var batch *Batch
|
||||
for {
|
||||
select {
|
||||
case e, ok := <-blockHeadersCh:
|
||||
e, ok := <-blockHeadersCh
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
header := e.(types.EventDataNewBlockHeader).Header
|
||||
batch := NewBatch(header.NumTxs)
|
||||
for i := int64(0); i < header.NumTxs; i++ {
|
||||
e, ok := <-txsCh
|
||||
if !ok {
|
||||
is.Logger.Error("Failed to index all transactions due to closed transactions channel", "height", header.Height, "numTxs", header.NumTxs, "numProcessed", i)
|
||||
return
|
||||
}
|
||||
numTxs = e.(types.EventDataNewBlockHeader).Header.NumTxs
|
||||
batch = NewBatch(numTxs)
|
||||
case e, ok := <-txsCh:
|
||||
if !ok {
|
||||
return
|
||||
}
|
||||
if batch == nil {
|
||||
panic("Expected pubsub to send block header first, but got tx event")
|
||||
}
|
||||
txResult := e.(types.EventDataTx).TxResult
|
||||
batch.Add(&txResult)
|
||||
got++
|
||||
if numTxs == got {
|
||||
is.idr.AddBatch(batch)
|
||||
batch = nil
|
||||
got = 0
|
||||
}
|
||||
}
|
||||
is.idr.AddBatch(batch)
|
||||
is.Logger.Info("Indexed block", "height", header.Height)
|
||||
}
|
||||
}()
|
||||
return nil
|
||||
|
Loading…
x
Reference in New Issue
Block a user