fix README

pull/10/head
Edouard Paris 5 years ago
parent 09aab16445
commit 74e423b494

@ -22,6 +22,9 @@ cd lntop && export GO111MODULE=on && go install -mod=vendor ./...
First time `lntop` is used a config file `.lntop/config.toml` is created
in the user home directory.
Change macaroon path according to your network.
```toml
[logger]
type = "production"
@ -41,22 +44,20 @@ pool_capacity = 3
[views]
# views.channels is the view displaying channel list.
[views.channels]
# It is possible to add, remove and order columns of
# the table with the array columns. The default value
# is:
# columns = [
# "STATUS",
# "ALIAS",
# "GAUGE",
# "LOCAL",
# "CAP",
# "HTLC",
# "UNSETTLED",
# "CFEE",
# "LAST UPDATE",
# "PRIVATE",
# "ID",
# ]
# It is possible to add, remove and order columns of the
# table with the array columns. The available values are:
# STATUS status of the channel
# ALIAS alias of the channel node
# GAUGE ascii bar with percent local/capacity
# LOCAL the local amount of the channel
# CAP the total capacity of the channel
# HTLC the number of pending HTLC
# UNSETTLED the amount unsettled in the channel
# CFEE the commit fee
# LAST UPDATE last update of the channel
# PRIVATE true if channel is private
# ID the id of the channel
columns = [
"STATUS",
"ALIAS",
@ -70,8 +71,27 @@ columns = [
"PRIVATE",
"ID",
]
[views.transactions]
# It is possible to add, remove and order columns of the
# table with the array columns. The available values are:
# DATE date of the transaction
# HEIGHT block height of the transaction
# CONFIR number of confirmations
# AMOUNT amount moved by the transaction
# FEE fee of the transaction
# ADDRESSES number of transaction output addresses
columns = [
"TIME",
"HEIGHT",
"CONFIR",
"AMOUNT",
"FEE",
"ADDRESSES",
]
`
```
Change macaroon path according to your network.
## Docker

Loading…
Cancel
Save