Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove a commented line
  • Loading branch information
shiqizng committed Feb 11, 2022
commit dd25f28eba351f493e03c6931e0a2463b6a9bea9
1 change: 0 additions & 1 deletion cmd/algorand-indexer/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ func handleBlock(block *rpcs.EncodedBlockCert, imp importer.Importer) error {
// Ignore round 0 (which is empty).
if block.Block.Round() > 0 {
metrics.BlockImportTimeSeconds.Observe(dt.Seconds())
//metrics.ImportedTxnsPerBlock.WithLabelValues().Set(float64(len(block.Block.Payset)))
metrics.ImportedRoundGauge.Set(float64(block.Block.Round()))
txnCountByType := make(map[string]int)
for _, txn := range block.Block.Payset {
Expand Down