electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 0b6ae1dbff08c6c17b53ed854fb2f0c9af36c6ce
parent 4d01a550c4802d68783adeff7e8df97f308f189c
Author: ThomasV <thomasv@electrum.org>
Date:   Mon, 20 Apr 2020 18:54:43 +0200

fix #6101

Diffstat:
Melectrum/commands.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/commands.py b/electrum/commands.py @@ -1077,7 +1077,7 @@ class Commands: @command('w') async def import_channel_backup(self, encrypted, wallet: Abstract_Wallet = None): - return wallet.lnworker.import_channel_backup(encrypted) + return wallet.lnbackups.import_channel_backup(encrypted) @command('wn') async def get_channel_ctx(self, channel_point, iknowwhatimdoing=False, wallet: Abstract_Wallet = None):