No description
Find a file
carla d10cf1b11d
dataset: add dataset package to calculate outliers
This commit adds a dataset package which calculates
outliers for datasets with float64 values. The
inter-quartile method of calcualting outliers is used.
2019-12-19 15:35:22 +02:00
cmd/terminator multi: Setup main package and logger 2019-11-04 10:38:46 +02:00
dataset dataset: add dataset package to calculate outliers 2019-12-19 15:35:22 +02:00
make multi: Add makefile 2019-11-05 08:45:34 +02:00
revenue revenue: add GetRevenue function 2019-12-16 11:06:35 +02:00
utils utils: add GetOutPointFromString helper 2019-12-16 11:03:41 +02:00
.golangci.yml revenue: add Revenue Report 2019-12-16 11:00:18 +02:00
.travis.yml terminator: Add travis config 2019-11-07 11:25:00 +02:00
config.go terminator: Connect to LND RPC 2019-11-04 10:39:33 +02:00
go.mod revenue: add Revenue Report 2019-12-16 11:00:18 +02:00
go.sum revenue: add Revenue Report 2019-12-16 11:00:18 +02:00
LICENSE Initial commit 2019-10-25 10:20:39 +02:00
log.go multi: Setup main package and logger 2019-11-04 10:38:46 +02:00
Makefile multi: Add makefile 2019-11-05 08:45:34 +02:00
README.md terminator: Add README 2019-11-07 11:25:00 +02:00
terminator.go terminator: Connect to LND RPC 2019-11-04 10:39:33 +02:00

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