mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Revert "miner: remove unused commented code (#27664)"
This reverts commit a71a6e7a48.
This commit is contained in:
parent
493763e5ec
commit
139d8b8955
1 changed files with 5 additions and 0 deletions
|
|
@ -904,6 +904,11 @@ func (w *worker) fillTransactions(interrupt *atomic.Int32, env *environment) err
|
|||
// Split the pending transactions into locals and remotes
|
||||
// Fill the block with all available pending transactions.
|
||||
pending := w.eth.TxPool().Pending(true)
|
||||
/*blobtxs := w.eth.BlobPool().Pending(
|
||||
uint256.MustFromBig(env.header.BaseFee),
|
||||
uint256.MustFromBig(misc.CalcBlobFee(*env.header.ExcessDataGas)),
|
||||
)
|
||||
log.Trace("Side-effect log, much wow", "blobs", len(blobtxs))*/
|
||||
|
||||
localTxs, remoteTxs := make(map[common.Address][]*types.Transaction), pending
|
||||
for _, account := range w.eth.TxPool().Locals() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue