github cryptosharks131/lndg v1.5.1
LNDg v1.5.1

latest releases: v1.8.0, v1.7.1, v1.7.0...
17 months ago

Minor Updates

Fix incorrect total balance while a channel is waiting to close

Additional logging and handling of potential errors added to rebalancer

Increased default sqlite3 timeout to 20s to avoid database locks causing rebalancer to stop

Manual Installation Notes (optional)

If you had issues with your rebalancer stopping in v1.5.0 you can also increase your database timeout in order to further reduce this risk.

Delete your settings.py file and re-initialize it OR update the required section manually in lndg/settings.py.
rm lndg/settings.py
.venv/bin/python initialize.py

OR

Update the DATABASES section to the following:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'data/db.sqlite3',
        'OPTIONS': {
            'timeout': 20,
        },
    }
}

Don't miss a new lndg release

NewReleases is sending notifications on new releases.