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 e37f3ed966
commit 0d79de61a2
  1. 5
      node/worker/worker.go

@ -128,7 +128,10 @@ func (w *Worker) SelectTransactionsForNewBlock(newBlockNum uint64, txs types.Tra
} else {
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