Skip to content

Commit ab52cd3

Browse files
committed
Fix too-long-line
1 parent a15ed73 commit ab52cd3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

rolling-shutter/contract/deployment/deployment.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,12 @@ func (c *Contracts) getDeployment(name string) (*Deployment, error) {
248248
}
249249

250250
func publishDeploymentMetric(d *Deployment) {
251-
metricsContractDeploymentInfo.WithLabelValues(d.Name, d.Address.String(), strconv.FormatUint(d.ChainID, 10), strconv.FormatUint(d.DeployBlockNumber, 10)).Set(1)
251+
metricsContractDeploymentInfo.WithLabelValues(
252+
d.Name,
253+
d.Address.String(),
254+
strconv.FormatUint(d.ChainID, 10),
255+
strconv.FormatUint(d.DeployBlockNumber, 10),
256+
).Set(1)
252257
}
253258

254259
func LoadDeployments(dir string) (*Deployments, error) {

0 commit comments

Comments
 (0)