mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
doc: adds capacity default values to manpage
- also adds CHANGELOG - Cleanup: also add defaults for channel fees to manpage
This commit is contained in:
parent
3fa539fc1b
commit
05b1b3f488
3 changed files with 19 additions and 17 deletions
|
@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
### Changed
|
||||
|
||||
- JSON API: `invoice` expiry defaults to 7 days, and can have s/m/h/d/w suffixes.
|
||||
- Config: Increased default amount for minimal channel capacity from 1k sat to 10k sat.
|
||||
|
||||
### Deprecated
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
.\" Title: lightningd-config
|
||||
.\" Author: [see the "AUTHOR" section]
|
||||
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
|
||||
.\" Date: 03/27/2019
|
||||
.\" Date: 04/11/2019
|
||||
.\" Manual: \ \&
|
||||
.\" Source: \ \&
|
||||
.\" Language: English
|
||||
.\"
|
||||
.TH "LIGHTNINGD\-CONFIG" "5" "03/27/2019" "\ \&" "\ \&"
|
||||
.TH "LIGHTNINGD\-CONFIG" "5" "04/11/2019" "\ \&" "\ \&"
|
||||
.\" -----------------------------------------------------------------
|
||||
.\" * Define some portability stuff
|
||||
.\" -----------------------------------------------------------------
|
||||
|
@ -188,17 +188,17 @@ Up to 32 UTF\-8 characters to tag your node\&. Completely silly, since anyone ca
|
|||
.PP
|
||||
\fBfee\-base\fR=\fIMILLISATOSHI\fR
|
||||
.RS 4
|
||||
The base fee to charge for every payment which passes through\&. Note that millisatoshis are a very, very small unit! Changing this value will only affect new channels and not existing ones\&. If you want to change fees for existing channels, use the RPC call lightningd\-setchannelfee(7)\&.
|
||||
Default: 1000\&. The base fee to charge for every payment which passes through\&. Note that millisatoshis are a very, very small unit! Changing this value will only affect new channels and not existing ones\&. If you want to change fees for existing channels, use the RPC call lightningd\-setchannelfee(7)\&.
|
||||
.RE
|
||||
.PP
|
||||
\fBfee\-per\-satoshi\fR=\fIMILLIONTHS\fR
|
||||
.RS 4
|
||||
This is the proportional fee to charge for every payment which passes through\&. As percentages are too coarse, it\(cqs in millionths, so 10000 is 1%, 1000 is 0\&.1%\&. Changing this value will only affect new channels and not existing ones\&. If you want to change fees for existing channels, use the RPC call lightningd\-setchannelfee(7)\&.
|
||||
Default: 10 (0\&.001%)\&. This is the proportional fee to charge for every payment which passes through\&. As percentages are too coarse, it\(cqs in millionths, so 10000 is 1%, 1000 is 0\&.1%\&. Changing this value will only affect new channels and not existing ones\&. If you want to change fees for existing channels, use the RPC call lightningd\-setchannelfee(7)\&.
|
||||
.RE
|
||||
.PP
|
||||
\fBmin\-capacity\-sat\fR=\fISATOSHI\fR
|
||||
.RS 4
|
||||
This value defines the minimal effective channel capacity in satoshi to accept for channel opening requests\&. If a peer tries to open a channel smaller than this, the opening will be rejected\&.
|
||||
Default: 10000\&. This value defines the minimal effective channel capacity in satoshi to accept for channel opening requests\&. If a peer tries to open a channel smaller than this, the opening will be rejected\&.
|
||||
.RE
|
||||
.PP
|
||||
\fBignore\-fee\-limits\fR=\fIBOOL\fR
|
||||
|
|
|
@ -139,22 +139,23 @@ Lightning node customization options
|
|||
and "VAULTERO" are good options, too.
|
||||
|
||||
*fee-base*='MILLISATOSHI'::
|
||||
The base fee to charge for every payment which passes through. Note that
|
||||
millisatoshis are a very, very small unit! Changing this value will only
|
||||
Default: 1000. The base fee to charge for every payment which passes
|
||||
through. Note that millisatoshis are a very, very small unit!
|
||||
Changing this value will only affect new channels and not existing ones.
|
||||
If you want to change fees for existing channels, use the RPC call
|
||||
lightningd-setchannelfee(7).
|
||||
|
||||
*fee-per-satoshi*='MILLIONTHS'::
|
||||
Default: 10 (0.001%). This is the proportional fee to charge for every
|
||||
payment which passes through. As percentages are too coarse, it's in
|
||||
millionths, so 10000 is 1%, 1000 is 0.1%. Changing this value will only
|
||||
affect new channels and not existing ones. If you want to change fees for
|
||||
existing channels, use the RPC call lightningd-setchannelfee(7).
|
||||
|
||||
*fee-per-satoshi*='MILLIONTHS'::
|
||||
This is the proportional fee to charge for every payment which passes
|
||||
through. As percentages are too coarse, it's in millionths, so 10000
|
||||
is 1%, 1000 is 0.1%. Changing this value will only affect new channels and
|
||||
not existing ones. If you want to change fees for existing channels, use
|
||||
the RPC call lightningd-setchannelfee(7).
|
||||
|
||||
*min-capacity-sat*='SATOSHI'::
|
||||
This value defines the minimal effective channel capacity in satoshi to
|
||||
accept for channel opening requests. If a peer tries to open a channel
|
||||
smaller than this, the opening will be rejected.
|
||||
Default: 10000. This value defines the minimal effective channel capacity
|
||||
in satoshi to accept for channel opening requests. If a peer tries to open
|
||||
a channel smaller than this, the opening will be rejected.
|
||||
|
||||
*ignore-fee-limits*='BOOL'::
|
||||
Allow nodes which establish channels to us to set any fee they
|
||||
|
|
Loading…
Add table
Reference in a new issue