From 0b6ae1dbff08c6c17b53ed854fb2f0c9af36c6ce Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 20 Apr 2020 18:54:43 +0200 Subject: [PATCH] fix #6101 --- electrum/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/commands.py b/electrum/commands.py index 3eb0dedde..3433dc609 100644 --- 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):