You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -88,8 +88,7 @@ Common:
88
88
-e, --exclude-channel (DEPRECATED) don't use this channel at all (can be specified multiple times)
89
89
-d, --exclude-node (DEPRECATED) don't use this node for routing (can be specified multiple times)
90
90
--exclude don't use this node or your channel for routing (can be specified multiple times)
91
-
--exclude-channel-age channels with a lower channel age (in blocks) relative to the current blockheight are excluded when rebalancing
92
-
--to try only this channel or node as target (should satisfy other constraints too; can be specified multiple times)
91
+
--exclude-channel-age don't use channels opened less than this number of blocks ago --to try only this channel or node as target (should satisfy other constraints too; can be specified multiple times)
93
92
--from try only this channel or node as source (should satisfy other constraints too; can be specified multiple times)
94
93
--fail-tolerance a payment that differs from the prior attempt by this ppm will be cancelled
95
94
--allow-unbalance-from (DEPRECATED) let the source channel go below 50% local liquidity, use if you want to drain a channel; you should also set --pfrom to >50
Copy file name to clipboardexpand all lines: main.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ type configParams struct {
45
45
ExcludeChannels []string`short:"e" long:"exclude-channel" description:"(DEPRECATED) don't use this channel at all (can be specified multiple times)" json:"exclude_channels" toml:"exclude_channels"`
46
46
ExcludeNodes []string`short:"d" long:"exclude-node" description:"(DEPRECATED) don't use this node for routing (can be specified multiple times)" json:"exclude_nodes" toml:"exclude_nodes"`
47
47
Exclude []string`long:"exclude" description:"don't use this node or your channel for routing (can be specified multiple times)" json:"exclude" toml:"exclude"`
48
-
ExcludeChannelAgeuint64`long:"exclude-channel-age" description:"channels with a lower channel age (in blocks) relative to the current blockheight are excluded when rebalancing" json:"exclude_channel_age" toml:"exclude_channel_age"`
48
+
ExcludeChannelAgeuint64`long:"exclude-channel-age" description:"don't use channels opened less than this number of blocks ago" json:"exclude_channel_age" toml:"exclude_channel_age"`
49
49
To []string`long:"to" description:"try only this channel or node as target (should satisfy other constraints too; can be specified multiple times)" json:"to" toml:"to"`
50
50
From []string`long:"from" description:"try only this channel or node as source (should satisfy other constraints too; can be specified multiple times)" json:"from" toml:"from"`
51
51
FailToleranceint64`long:"fail-tolerance" description:"a payment that differs from the prior attempt by this ppm will be cancelled" json:"fail_tolerance" toml:"fail_tolerance"`
0 commit comments