diff --git a/miner/scroll_worker.go b/miner/scroll_worker.go index 036718062a3b..9b1be0c9c973 100644 --- a/miner/scroll_worker.go +++ b/miner/scroll_worker.go @@ -541,12 +541,13 @@ func (w *worker) handlePipelineResult(res *pipeline.Result) error { w.currentPipeline.Release() w.currentPipeline = nil + if res.FinalBlock != nil { + w.updateSnapshot(res.FinalBlock) + } + // Rows being nil without an OverflowingTx means that block didn't go thru CCC, // which means that we are not the sequencer. Do not attempt to commit. if res.Rows == nil && res.OverflowingTx == nil { - if res.FinalBlock != nil { - w.updateSnapshot(res.FinalBlock) - } return nil } diff --git a/params/version.go b/params/version.go index 6abfdd8406ee..500e4dc03346 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 = 5 // Minor version component of the current release - VersionPatch = 14 // Patch version component of the current release + VersionPatch = 15 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )