From 0a5ffaa8b35dacbb3992879667ea5ce37690b7dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Tue, 16 Jul 2019 13:10:34 +0200 Subject: [PATCH] small syntax change for collector declaration --- eth/common/utils.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/common/utils.nim b/eth/common/utils.nim index 84c6ab0..f242a96 100644 --- a/eth/common/utils.nim +++ b/eth/common/utils.nim @@ -10,5 +10,5 @@ proc parseAddress*(hexString: string): EthAddress = proc `$`*(a: EthAddress): string = a.toHex() -newPublicGauge(connected_peers, "number of peers in the pool") +newPublicGauge connected_peers, "number of peers in the pool"