Merge pull request #1167 from Gustav-Simonsson/check_ec_recover_err

Add missing err checks on From()
This commit is contained in:
Jeffrey Wilcke
2015-06-03 10:29:47 -07:00
4 changed files with 25 additions and 18 deletions

View File

@ -271,7 +271,7 @@ func (pool *TxPool) Stop() {
}
func (self *TxPool) queueTx(tx *types.Transaction) {
from, _ := tx.From()
from, _ := tx.From() // already validated
self.queue[from] = append(self.queue[from], tx)
}