We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bffd1a0 + 19bd795 commit 0a04ed4Copy full SHA for 0a04ed4
core/txpool/txpool.go
@@ -1390,7 +1390,7 @@ func (pool *TxPool) promoteExecutables(accounts []common.Address) []*types.Trans
1390
// promote all promotable transactions
1391
promoted := make([]*types.Transaction, 0, len(promotable))
1392
for _, tx := range promotable {
1393
- from, _ := pool.signer.Sender(tx)
+ from, _ := types.Sender(pool.signer, tx) // already validated
1394
if pool.promoteTx(from, tx.Hash(), tx) {
1395
promoted = append(promoted, tx)
1396
}
0 commit comments