Commit a24a4e6 2 people authored and committed
1 parent bd4cae7 commit a24a4e6 Copy full SHA for a24a4e6
File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -541,12 +541,13 @@ func (w *worker) handlePipelineResult(res *pipeline.Result) error {
541
541
w .currentPipeline .Release ()
542
542
w .currentPipeline = nil
543
543
544
+ if res .FinalBlock != nil {
545
+ w .updateSnapshot (res .FinalBlock )
546
+ }
547
+
544
548
// Rows being nil without an OverflowingTx means that block didn't go thru CCC,
545
549
// which means that we are not the sequencer. Do not attempt to commit.
546
550
if res .Rows == nil && res .OverflowingTx == nil {
547
- if res .FinalBlock != nil {
548
- w .updateSnapshot (res .FinalBlock )
549
- }
550
551
return nil
551
552
}
552
553
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
24
24
const (
25
25
VersionMajor = 5 // Major version component of the current release
26
26
VersionMinor = 5 // Minor version component of the current release
27
- VersionPatch = 14 // Patch version component of the current release
27
+ VersionPatch = 15 // Patch version component of the current release
28
28
VersionMeta = "mainnet" // Version metadata to append to the version string
29
29
)
30
30
You can’t perform that action at this time.
0 commit comments