mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-18 15:54:13 +00:00
17 lines
384 B
Go
17 lines
384 B
Go
|
package verification
|
||
|
|
||
|
import (
|
||
|
"github.com/prometheus/client_golang/prometheus"
|
||
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
blobVerifiationProposerSignatureCache = promauto.NewCounterVec(
|
||
|
prometheus.CounterOpts{
|
||
|
Name: "blob_verification_proposer_signature_cache",
|
||
|
Help: "BlobSidecar proposer signature cache result.",
|
||
|
},
|
||
|
[]string{"result"},
|
||
|
)
|
||
|
)
|