Skip to content

Commit

Permalink
Merge branch 'warp-api-support' of github.com:ava-labs/awm-relayer in…
Browse files Browse the repository at this point in the history
…to warp-api-support
  • Loading branch information
cam-schultz committed Jun 26, 2024
2 parents 062cfd9 + 22bbf5c commit b83aa49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion relayer/application_relayer.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ type ApplicationRelayer struct {
checkpointManager *checkpoint.CheckpointManager
currentRequestID uint32
lock *sync.RWMutex
sourceWarpSignatureClient *rpc.Client // nil if the source blockchain is configured to sign messages via AppRequest
sourceWarpSignatureClient *rpc.Client // nil if configured to fetch signatures via AppRequest for the source blockchain
}

func NewApplicationRelayer(
Expand Down
4 changes: 2 additions & 2 deletions relayer/application_relayer_metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func NewApplicationRelayerMetrics(registerer prometheus.Registerer) (*Applicatio
fetchSignatureAppRequestCount := prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "fetch_signature_app_request_count",
Help: "Number messages signed via AppRequest",
Help: "Number of aggregate signatures constructed via AppRequest",
},
[]string{"destination_chain_id", "source_chain_id", "source_subnet_id"},
)
Expand All @@ -70,7 +70,7 @@ func NewApplicationRelayerMetrics(registerer prometheus.Registerer) (*Applicatio
fetchSignatureRPCCount := prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "fetch_signature_rpc_count",
Help: "Number messages signed via Warp API",
Help: "Number of aggregate signatures fetched via Warp API",
},
[]string{"destination_chain_id", "source_chain_id", "source_subnet_id"},
)
Expand Down

0 comments on commit b83aa49

Please sign in to comment.