Skip to content

LNDg v1.9.0

Latest
Compare
Choose a tag to compare
@cryptosharks131 cryptosharks131 released this 24 Sep 21:06
· 5 commits to master since this release
11aa6f8

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

  1. The -server option of initialize.py has been renamed to -rpc.
  2. Using supervisord is no longer required
  3. All logs are directed to /var/log/lndg-controller.log
  4. 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