From 6154e932223b42f3b17cd12810eb1ae00432fcea Mon Sep 17 00:00:00 2001 From: Janus Date: Mon, 12 Feb 2018 14:53:31 +0100 Subject: [PATCH] lightning: 30 sec command timeout --- lib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands.py b/lib/commands.py index 5bea1ff6..63b962fe 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -703,7 +703,7 @@ class Commands: newResult = FakeQtSignal() self.wallet.lightning.setConsole(MyConsole()) lightning.lightningCall(self.wallet.lightning, lcmd)(*args) - return q.get(block=True, timeout=10) + return q.get(block=True, timeout=30) param_descriptions = { 'privkey': 'Private key. Type \'?\' to get a prompt.',