bsc/eth/protocols/trust/metrics.go

14 lines
437 B
Go
Raw Normal View History

package trust
import (
metrics "github.com/ethereum/go-ethereum/metrics"
)
var (
ingressRegistrationErrorName = "eth/protocols/trust/ingress/registration/error"
egressRegistrationErrorName = "eth/protocols/trust/egress/registration/error"
IngressRegistrationErrorMeter = metrics.NewRegisteredMeter(ingressRegistrationErrorName, nil)
EgressRegistrationErrorMeter = metrics.NewRegisteredMeter(egressRegistrationErrorName, nil)
)