From 4b3ff33576eb32593c6916dcf4498b6560af5fbe Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Mon, 11 Apr 2022 20:27:49 +0200 Subject: [PATCH] commando: fixes `requirements.txt` for a plugin In a clean machine a new user will endup with the following exception ``` Traceback (most recent call last): File "/home/lightning/.lightning/plugins/commando.py", line 22, in from pyln.client import Plugin, RpcError # type: ignore ModuleNotFoundError: No module named 'pyln' ``` Signed-off-by: Vincenzo Palazzo --- commando/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/commando/requirements.txt b/commando/requirements.txt index c5264d6..a46f39b 100644 --- a/commando/requirements.txt +++ b/commando/requirements.txt @@ -1 +1,2 @@ runes>=0.4 +pyln-client>=0.10.1