Releases: accumulator/charge-lnd
Releases · accumulator/charge-lnd
v0.2.13
- fix chan.disabled check
- fix rare error formatting output when output is not a string (thanks @scissorstail)
- add new channel matching criteria
chan.(min|max)_(sats|htlcs)_ratiofor in/out flow ratios (thanks @scissorstail) - add
ignore_feesstrategy to manage just htlc size limits and time_lock_delta. Allows better co-existence with other fee managers (e.g. LNDg)
v0.2.12
- add criteria to match number of channels, ratio and capacity over multiple channels with the same peer (thanks @mariaa144).
- add criterium to match channels where the peer has disabled the channel
v0.2.11
- add
sum_peer_chanstoproportionalstrategy to consider multiple channels to the same peer (thanks @dmp1ce) - docker: proper fallback for tls cert when
TLS_CERT_PATHis empty string (fixes #75) - allow using variables in config files (closes #39)
- improve robustness w.r.t commas and whitespace in chan/node list files (fixes #67)
v0.2.9
- don't match channels on activity_period criteria if the channel is younger than the activity_period
- add command parameters --tlscert and --macaroon
- support SSL for electrum servers
- fix error in fallback when a strategy returns an error
v0.2.8
downgraded grpcio dependency, prebuilt 1.41.0 from pypi was problematic on some architectures
v0.2.7
fix a few bugs that snuck into 0.2.5 and 0.2.6
v0.2.5
- Add flow/activity criteria. Allows you to set fees based on number of HTLCs or sats flowing in/out of channels
- default minimum fee delta increased for dynamic strategies
- fixed rare case when LND doesn't provide channel information for an existing channel
v0.2.4
- This release introduces the 'disable' strategy, which marks a channel as disabled, blocking outgoing HTLCs. (lnd >=0.13.0 only)
- Any channel that is in a disabled state, will be enabled again if it matches a policy that doesn't result in a 'disable' or 'ignore' strategy.
v0.2.3
- implement (min|max)_(local|remote)_balance, allows matching on channel absolute local/remote balance
- update dependency versions for protobuf and grpcio
v0.2.2
- small bugfix when using --dry-run
- add max_htlc_msat_ratio property to set max HTLC as a fraction of total channel capacity
- Docker WORKDIR now set to /app so config files can be referenced without absolute path
- show error message instead of stack trace on LND gRPC connect errors