Skip to content

Commit

Permalink
doc: update startup options
Browse files Browse the repository at this point in the history
  • Loading branch information
JssDWt committed Jul 4, 2024
1 parent 501c8e2 commit f61d6e5
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,24 @@ There's configuration options for the trampoline plugin that can to be passed
to core lightning on startup.

```
--trampoline-cltv-delta <arg> The number of blocks between incoming payments and outgoing payments: this
needs to be enough to make sure that if we have to, we can close the
outgoing payment before the incoming, or redeem the incoming once the
outgoing is redeemed. (default: 34)
--trampoline-policy-cltv-delta <arg> Cltv expiry delta for the trampoline routing policy. Any routes where the
total cltv delta is lower than this number will not be tried. (default: 576)
--trampoline-policy-fee-per-satoshi <arg> This is the proportional fee to charge for every trampoline payment which
passes through. As percentages are too coarse, it's in millionths, so 10000
is 1%, 1000 is 0.1%. (default: 5000)
--trampoline-policy-fee-base <arg> The base fee to charge for every trampoline payment which passes through.
(default: 0)
--trampoline-mpp-timeout <arg> Timeout in seconds before multipart htlcs that don't add up to the payment
amount are failed back to the sender. (default: 60)
--trampoline-no-self-route-hints If this flag is set, invoices where the current node is in an invoice route
hint are not supported. This can be useful if there are other important
plugins acting only on forwards. The trampoline plugin will 'receive' and
'pay', so has different dynamics.
--trampoline-policy-cltv-delta <arg> Cltv expiry delta for the trampoline routing policy. Any routes where
the total cltv delta is lower than this number will not be tried.
(default: 1008)
--trampoline-no-self-route-hints If this flag is set, invoices where the current node is in an invoice
route hint are not supported. This can be useful if there are other
important plugins acting only on forwards. The trampoline plugin will
'receive' and 'pay', so has different dynamics.
--trampoline-policy-fee-per-satoshi <arg> This is the proportional fee to charge for every trampoline payment
which passes through. As percentages are too coarse, it's in
millionths, so 10000 is 1%, 1000 is 0.1%. (default: 5000)
--trampoline-policy-fee-base <arg> The base fee to charge for every trampoline payment which passes
through. (default: 0)
--trampoline-mpp-timeout <arg> Timeout in seconds before multipart htlcs that don't add up to the
payment amount are failed back to the sender. (default: 60)
--trampoline-cltv-delta <arg> The number of blocks between incoming payments and outgoing payments:
this needs to be enough to make sure that if we have to, we can close
the outgoing payment before the incoming, or redeem the incoming once
the outgoing is redeemed. (default: 34)
```

## Testing
Expand Down

0 comments on commit f61d6e5

Please sign in to comment.