From ba85a5796a0f3d515a3d4519fd745cc1e7f96e0c Mon Sep 17 00:00:00 2001 From: darosior Date: Wed, 25 Dec 2019 18:30:24 +0100 Subject: [PATCH] README: Add csvexportpays to the table And fix indentation in test sample --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e8979dd..5c8d86e 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Community curated plugins for c-lightning. |------------------------------------|----------------------------------------------------------------------------| | [autopilot][autopilot] | An autopilot that suggests channels that should be established | | [autoreload][autoreload] | A developer plugin that reloads a plugin under development when it changes | +| [csvexportpays][csvexportpays] | A plugin that exports all payments to a CSV file | | [donations][donations] | A simple donations page to accept donations from the web | | [graphql][graphql] | Exposes the c-lightning API over [graphql][graphql-spec] | | [lightning-qt][lightning-qt] | A bitcoin-qt-like GUI for lightningd | @@ -79,7 +80,7 @@ from pyln.testing.fixtures import * def test_summary_start(node_factory): l1 = node_factory.get_node(options=pluginopt) s = l1.rpc.summary() - assert(s['network'] == 'REGTEST') # or whatever you want to test + assert(s['network'] == 'REGTEST') # or whatever you want to test ``` Tests are run against pull requests, all commits on `master`, as well as once @@ -139,3 +140,4 @@ your environment. [reckless]: https://github.com/darosior/reckless [zmq-home]: https://zeromq.org/ [zmq]: https://github.com/lightningd/plugins/tree/master/zmq +[csvexportpays]: https://github.com/0xB10C/c-lightning-plugin-csvexportpays