From 6b649eeb1095653b05596ce898a3323de36076fc Mon Sep 17 00:00:00 2001 From: Joost Jager Date: Tue, 31 Mar 2020 22:04:57 +0200 Subject: [PATCH] lncli: remove unused type chain --- cmd/lncli/commands.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cmd/lncli/commands.go b/cmd/lncli/commands.go index 5ab5fd52..79313d25 100644 --- a/cmd/lncli/commands.go +++ b/cmd/lncli/commands.go @@ -1705,11 +1705,6 @@ var getInfoCommand = cli.Command{ Action: actionDecorator(getInfo), } -type chain struct { - Chain string `json:"chain"` - Network string `json:"network"` -} - func getInfo(ctx *cli.Context) error { ctxb := context.Background() client, cleanUp := getClient(ctx)