mirror of
https://github.com/lightninglabs/faraday.git
synced 2026-08-20 13:28:33 +02:00
No description
This change logs short channel ids that we cannot find in our set of open, pending and closed channels. This provides a better UX than blindly failing the whole revenue report because we cannot find a single channel. |
||
|---|---|---|
| cmd | ||
| dataset | ||
| make | ||
| recommend | ||
| revenue | ||
| trmrpc | ||
| utils | ||
| .golangci.yml | ||
| .travis.yml | ||
| config.go | ||
| go.mod | ||
| go.sum | ||
| LICENSE | ||
| log.go | ||
| Makefile | ||
| README.md | ||
| terminator.go | ||
Terminator
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