From eeecfc983c4b497b78a8a8d6cbf659c28de6fe1f Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Mon, 15 Apr 2019 14:21:35 +0200 Subject: [PATCH] plugin: Remove autopatch argument from helloworld plugin Suggested-by: Rusty Russell <@rustyrussell> --- contrib/plugins/helloworld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/plugins/helloworld.py b/contrib/plugins/helloworld.py index d2a4f4d85..987ab4cd9 100755 --- a/contrib/plugins/helloworld.py +++ b/contrib/plugins/helloworld.py @@ -2,7 +2,7 @@ from lightning import Plugin -plugin = Plugin(autopatch=True) +plugin = Plugin() @plugin.method("hello")