From 72235a52f2f6c427fe38dba8efc9792a5f202416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Sat, 11 May 2024 20:01:24 +0200 Subject: [PATCH] fixed linter issue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- x/machine/keeper/msg_server_register_trust_anchor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/machine/keeper/msg_server_register_trust_anchor.go b/x/machine/keeper/msg_server_register_trust_anchor.go index a566fbd..2c12092 100644 --- a/x/machine/keeper/msg_server_register_trust_anchor.go +++ b/x/machine/keeper/msg_server_register_trust_anchor.go @@ -35,7 +35,7 @@ func validatePublicKey(pubkey string) bool { return false } - //uncompressed key + // uncompressed key if len(pubkeyBytes) == 64 { return true }