From 037781a187173657a02bf93be3ab133e70858f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Mon, 6 May 2024 10:04:16 +0800 Subject: [PATCH] feat(worker): disable enforceTips when fetching pending transactions (#740) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update worker.go * chore: auto version bump [bot] --------- Co-authored-by: Thegaram --- miner/worker.go | 2 +- params/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/miner/worker.go b/miner/worker.go index 40811d205c..ef9166af26 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -1446,7 +1446,7 @@ func (w *worker) commitNewWork(interrupt *int32, noempty bool, timestamp int64) tidyPendingStart := time.Now() // Fill the block with all available pending transactions. - pending := w.eth.TxPool().Pending(true) + pending := w.eth.TxPool().Pending(false) // Short circuit if there is no available pending transactions. // But if we disable empty precommit already, ignore it. Since // empty block is necessary to keep the liveness of the network. diff --git a/params/version.go b/params/version.go index cfdc330f8c..454a560456 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 5 // Major version component of the current release VersionMinor = 3 // Minor version component of the current release - VersionPatch = 10 // Patch version component of the current release + VersionPatch = 11 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )