Skip to content

Commit 84a8021

Browse files
authored
beacon/light: optimize lock usage in HeadTracker (ethereum#30485)
minimizes the time when the lock is held
1 parent 56c4f2b commit 84a8021

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

beacon/light/head_tracker.go

+8-6
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,13 @@ func (h *HeadTracker) ValidatedFinality() (types.FinalityUpdate, bool) {
6969
// slot or same slot and more signers) then ValidatedOptimistic is updated.
7070
// The boolean return flag signals if ValidatedOptimistic has been changed.
7171
func (h *HeadTracker) ValidateOptimistic(update types.OptimisticUpdate) (bool, error) {
72-
h.lock.Lock()
73-
defer h.lock.Unlock()
74-
7572
if err := update.Validate(); err != nil {
7673
return false, err
7774
}
75+
76+
h.lock.Lock()
77+
defer h.lock.Unlock()
78+
7879
replace, err := h.validate(update.SignedHeader(), h.optimisticUpdate.SignedHeader())
7980
if replace {
8081
h.optimisticUpdate, h.hasOptimisticUpdate = update, true
@@ -88,12 +89,13 @@ func (h *HeadTracker) ValidateOptimistic(update types.OptimisticUpdate) (bool, e
8889
// slot or same slot and more signers) then ValidatedFinality is updated.
8990
// The boolean return flag signals if ValidatedFinality has been changed.
9091
func (h *HeadTracker) ValidateFinality(update types.FinalityUpdate) (bool, error) {
91-
h.lock.Lock()
92-
defer h.lock.Unlock()
93-
9492
if err := update.Validate(); err != nil {
9593
return false, err
9694
}
95+
96+
h.lock.Lock()
97+
defer h.lock.Unlock()
98+
9799
replace, err := h.validate(update.SignedHeader(), h.finalityUpdate.SignedHeader())
98100
if replace {
99101
h.finalityUpdate, h.hasFinalityUpdate = update, true

0 commit comments

Comments
 (0)