From ad411cc157403a08755dbe17e237ad5861f3df81 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 28 May 2019 22:17:45 -0400 Subject: [PATCH] trying to fix rebase --- lbrynet/extras/daemon/Daemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lbrynet/extras/daemon/Daemon.py b/lbrynet/extras/daemon/Daemon.py index 9a264edbd..8f9ccaeeb 100644 --- a/lbrynet/extras/daemon/Daemon.py +++ b/lbrynet/extras/daemon/Daemon.py @@ -2122,7 +2122,7 @@ class Daemon(metaclass=JSONRPCServerType): ) @requires(WALLET_COMPONENT) - async def jsonrpc_channel_export(self, claim_id, password=None, account_id=None, insecure=False): + async def jsonrpc_channel_export(self, claim_id, password=None, account_id=None): """ Export serialized channel signing information for a given certificate claim id @@ -2137,7 +2137,7 @@ class Daemon(metaclass=JSONRPCServerType): """ account = self.get_account_or_default(account_id) - return await self.wallet_manager.export_certificate_info(claim_id, account, password, insecure) + return await self.wallet_manager.export_certificate_info(claim_id, account, password) @requires(WALLET_COMPONENT) async def jsonrpc_channel_import(self, serialized_certificate_info, password=None, account_id=None):