From 8fb79196baa16e6ba52a7547adff2edd0c9e5f62 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 11 May 2020 17:52:04 +0200 Subject: [PATCH] add_lightning_request command: return request object --- electrum/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/commands.py b/electrum/commands.py index 792b30440..89d24195e 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -866,7 +866,7 @@ class Commands: async def add_lightning_request(self, amount, memo='', expiration=3600, wallet: Abstract_Wallet = None): amount_sat = int(satoshis(amount)) key = await wallet.lnworker._add_request_coro(amount_sat, memo, expiration) - return wallet.get_request(key)['invoice'] + return wallet.get_request(key) @command('w') async def addtransaction(self, tx, wallet: Abstract_Wallet = None):