2bdcd37640
Use interfaces for `SignedBeaconBlock` and `BeaconState`, this allows the application to determine the correct forked struct. In the test we also use a switch condition to properly serve the correct mimics.
24 lines
777 B
Go
24 lines
777 B
Go
package beaconclient
|
|
|
|
import (
|
|
"sync/atomic"
|
|
)
|
|
|
|
// Wrapper function to increment inserts. If we want to use mutexes later we can easily update all
|
|
// occurrences here.
|
|
func (m *BeaconClientMetrics) IncrementHeadTrackingInserts(inc uint64) {
|
|
atomic.AddUint64(&m.HeadTrackingInserts, inc)
|
|
}
|
|
|
|
// Wrapper function to increment reorgs. If we want to use mutexes later we can easily update all
|
|
// occurrences here.
|
|
func (m *BeaconClientMetrics) IncrementHeadTrackingReorgs(inc uint64) {
|
|
atomic.AddUint64(&m.HeadTrackingReorgs, inc)
|
|
}
|
|
|
|
// Wrapper function to increment reorgs. If we want to use mutexes later we can easily update all
|
|
// occurrences here.
|
|
func (m *BeaconClientMetrics) IncrementHeadTrackingKnownGaps(inc uint64) {
|
|
atomic.AddUint64(&m.HeadTrackingKnownGaps, inc)
|
|
}
|