From e36c5a45d30cb4b7eb27ae0a8473358c104e0f83 Mon Sep 17 00:00:00 2001 From: carla Date: Wed, 15 Apr 2020 09:10:21 +0200 Subject: [PATCH] loop: fix loop in quote conf target flag usage field --- cmd/loop/quote.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cmd/loop/quote.go b/cmd/loop/quote.go index ebef99a..44e9a3a 100644 --- a/cmd/loop/quote.go +++ b/cmd/loop/quote.go @@ -25,10 +25,9 @@ var quoteInCommand = cli.Command{ Flags: []cli.Flag{ cli.Uint64Flag{ Name: "conf_target", - Usage: "the number of blocks from the swap " + - "initiation height that the on-chain HTLC " + - "should be swept within in a Loop Out", - Value: 6, + Usage: "the target number of blocks the on-chain " + + "htlc broadcast by the swap client should " + + "confirm within", }, }, Action: quoteIn,