From 85447c1146e0b0343b21cff6bee7df566fff7d35 Mon Sep 17 00:00:00 2001 From: Dimitris Tsapakidis Date: Fri, 30 Mar 2018 01:32:51 +0400 Subject: [PATCH] Fix typo in command line help MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “Convfersion amount” -> “Conversion amount --- lightning-address.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning-address.py b/lightning-address.py index 8c0d7fa..c62a4d1 100755 --- a/lightning-address.py +++ b/lightning-address.py @@ -110,7 +110,7 @@ def tags_by_name(name, tags): parser_enc.set_defaults(func=encode) parser_dec.add_argument('lnaddress', help='Address to decode') -parser_dec.add_argument('--rate', type=float, help='Convfersion amount for 1 currency unit') +parser_dec.add_argument('--rate', type=float, help='Conversion amount for 1 currency unit') parser_dec.add_argument('--pubkey', help='Public key for the chanid') parser_dec.add_argument('--verbose', help='Print out extra decoding info', action="store_true") parser_dec.set_defaults(func=decode)