mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 13:21:37 +00:00
Partial backport of ethereum/go-ethereum PR #27841, limited to txpool wrapper removal. - Migrate txpool interfaces/call sites from `*txpool.Transaction` to `*types.Transaction` - Update eth/miner/contracts paths and related tests accordingly - No intended behavior change Blob sidecar validation/handling changes from upstream are not included here.
This commit is contained in:
parent
7d67a4ead4
commit
c762053cd6
1 changed files with 3 additions and 3 deletions
|
|
@ -1149,11 +1149,11 @@ func (w *Work) commitTransactions(mux *event.TypeMux, balanceFee map[common.Addr
|
|||
if lazyTx == nil {
|
||||
break
|
||||
}
|
||||
warped := lazyTx.Resolve()
|
||||
if warped == nil {
|
||||
resolvedTx := lazyTx.Resolve()
|
||||
if resolvedTx == nil {
|
||||
break
|
||||
}
|
||||
tx := warped
|
||||
tx := resolvedTx
|
||||
to := tx.To()
|
||||
if w.header.Number.Uint64() >= common.DenylistHFNumber {
|
||||
from := tx.From()
|
||||
|
|
|
|||
Loading…
Reference in a new issue