faraday/README.md
2019-11-07 11:25:00 +02:00

1 KiB

Terminator

Build Status MIT licensed

The terminator is an external service intended to be run in conjunction with the lnd implementation of the Lightning Network. It queries LND for information about its existing channels and provides channel close recommendations if channels are under-performing.

Future iterations of this project will automate the channel closing process.

Installation

A Makefile is provided. To install terminator and al its dependencies, run:

go get -d github.com/lightninglabs/terminator
cd $GOPATH/src/github.com/lightninglabs/terminator
make && make install
Tests

To run all the unit tests inthe repo, use:

make check