added error handling for the case when msg was not able to extracted from tx during throttling tx

pull/1319/head
Dennis Won 5 years ago
parent 357703d643
commit b8550ab001
  1. 5
      node/worker/worker.go

@ -128,7 +128,10 @@ func (w *Worker) SelectTransactionsForNewBlock(newBlockNum uint64, txs types.Tra
} else { } else {
selected = append(selected, tx) selected = append(selected, tx)
recentTxsStats[newBlockNum][sender]++ // handle the case when msg was not able to extracted from tx
if len(sender.String()) > 0 {
recentTxsStats[newBlockNum][sender]++
}
} }
} }

Loading…
Cancel
Save