From b835ce2f99d6b09b739960e8d41c5e593f7e6ee7 Mon Sep 17 00:00:00 2001 From: Yuryshev Date: Mon, 25 Mar 2019 12:39:24 +0300 Subject: [PATCH] Removed unused args for pk command --- cmd/skywire-cli/commands/pk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/skywire-cli/commands/pk.go b/cmd/skywire-cli/commands/pk.go index e80b20b1b..151433a4b 100644 --- a/cmd/skywire-cli/commands/pk.go +++ b/cmd/skywire-cli/commands/pk.go @@ -14,7 +14,7 @@ func init() { var pkCmd = &cobra.Command{ Use: "pk", Short: "get public key of node", - Run: func(_ *cobra.Command, args []string) { + Run: func(_ *cobra.Command, _ []string) { client := rpcClient() summary, err := client.Summary()