We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bced740 commit 334b678Copy full SHA for 334b678
execution/gethexec/sync_monitor.go
@@ -294,7 +294,10 @@ func (s *SyncMonitor) SetFinalityData(
294
295
if executionDB != nil && finalizedBlockHeader != nil {
296
finalizedBlockHash := finalizedBlockHeader.Hash()
297
- executionDB.Put(ValidatedBlockHashKey, finalizedBlockHash.Bytes())
+ err := executionDB.Put(ValidatedBlockHashKey, finalizedBlockHash.Bytes())
298
+ if err != nil {
299
+ return err
300
+ }
301
}
302
303
safeBlockHeader, err := s.getFinalityBlockHeader(
0 commit comments