mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
17 lines
385 B
Go
17 lines
385 B
Go
package verification
|
|
|
|
import (
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
|
)
|
|
|
|
var (
|
|
blobVerificationProposerSignatureCache = promauto.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Name: "blob_verification_proposer_signature_cache",
|
|
Help: "BlobSidecar proposer signature cache result.",
|
|
},
|
|
[]string{"result"},
|
|
)
|
|
)
|