No description
Find a file
carla 5c28058d4a
config: update default port to 8465
Update default port to 8465 which has no commonly used TCP application
to avoid collisions.
2020-03-10 11:02:35 +02:00
cmd multi: rename trmcli to gvncli 2020-03-05 17:07:39 +02:00
dataset mutli: update line wrap to 80 2020-02-11 22:37:26 +02:00
gvnrpc multi: rename trmrpc to gvnrpc 2020-03-05 17:07:35 +02:00
insights multi: rename terminator main package to governator 2020-03-05 17:07:21 +02:00
make multi: Add makefile 2019-11-05 08:45:34 +02:00
recommend multi: rename terminator main package to governator 2020-03-05 17:07:21 +02:00
revenue revenue: remove time parameters from get revenue 2020-02-11 22:42:17 +02:00
utils utils: add GetOutPointFromString helper 2019-12-16 11:03:41 +02:00
.golangci.yml terminator: query for recommendations on startup 2019-12-19 15:45:38 +02:00
.travis.yml terminator: Add travis config 2019-11-07 11:25:00 +02:00
config.go config: update default port to 8465 2020-03-10 11:02:35 +02:00
go.mod multi: rename terminator main package to governator 2020-03-05 17:07:21 +02:00
go.sum trmcli: add cli and command for close recommendations 2020-01-31 13:20:11 +02:00
governator.go multi: rename trmrpc to gvnrpc 2020-03-05 17:07:35 +02:00
LICENSE readme: update license and remove status 2020-03-10 11:02:03 +02:00
log.go multi: rename trmrpc to gvnrpc 2020-03-05 17:07:35 +02:00
Makefile multi: rename trmcli to gvncli 2020-03-05 17:07:39 +02:00
README.md readme: update license and remove status 2020-03-10 11:02:03 +02:00

governator

MIT licensed

The governator 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 governator and al its dependencies, run:

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

To run all the unit tests inthe repo, use:

make check