From cdc1660d471e77185d91eb1cb96e22b62f131918 Mon Sep 17 00:00:00 2001 From: Joel Lehtonen OH64K Date: Tue, 6 Dec 2022 00:31:16 +0200 Subject: [PATCH] commands: Remove unused requested_amount and fix a typo (#8090) --- electrum/commands.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/electrum/commands.py b/electrum/commands.py index 62f1cab05..7b0508a4f 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -1248,7 +1248,7 @@ class Commands: async def rebalance_channels(self, from_scid, dest_scid, amount, wallet: Abstract_Wallet = None): """ Rebalance channels. - If trampoline is used, channels must be with diferent trampolines. + If trampoline is used, channels must be with different trampolines. """ from .lnutil import ShortChannelID from_scid = ShortChannelID.from_str(from_scid) @@ -1345,7 +1345,6 @@ param_descriptions = { 'message': 'Clear text message. Use quotes if it contains spaces.', 'encrypted': 'Encrypted message', 'amount': 'Amount to be sent (in BTC). Type \'!\' to send the maximum available.', - 'requested_amount': 'Requested amount (in BTC).', 'outputs': 'list of ["address", amount]', 'redeem_script': 'redeem script (hexadecimal)', 'lightning_amount': "Amount sent or received in a submarine swap. Set it to 'dryrun' to receive a value",