New Features
Inbound fees can be set from the /advanced
page (negative values only)
Inbound fees will be shown next to successful forwards when LNDg detects the inbound fee was used
Unify logs between docker and manual installers
Added setting LND-DisableMPP
to force rebalances to not use MPP (available at: /api/settings/
)
Stop dashboard auto-refresh if user is hovering an item
Fix issue where max fee rate can be ignored
Added a consolidate UTXOs button
Show attempted ppm when HTLC failure was fee insufficient
Write inbound flows in green text
Various improvements and bug fixes
IMPORTANT - Docker installs have changed!
Since the docker installs use the initialize.py file during startup, you will need to update your docker-compose.yaml
to use the updated options. The latest release of LNDg also removes the requirement to run supervisord
.
Changes
- The
-server
option ofinitialize.py
has been renamed to-rpc
. - Using supervisord is no longer required
- All logs are directed to
/var/log/lndg-controller.log
- Reduced image size using
python:3-alpine
Sample docker-compose.yaml
services:
lndg:
build: .
volumes:
- /root/.lnd:/root/.lnd:ro
- /root/lndg/data:/app/data:rw
- /root/lndg/data/lndg-controller.log:/var/log/lndg-controller.log:rw
command:
- sh
- -c
- python initialize.py -net 'mainnet' -rpc 'localhost:10009' -wn && python controller.py runserver 0.0.0.0:8000 > /var/log/lndg-controller.log 2>&1
ports:
- 8889:8000