Skip to content

LNDg v1.5.1

Compare
Choose a tag to compare
@cryptosharks131 cryptosharks131 released this 02 Feb 17:39
· 320 commits to master since this release
210c2ee

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,
        },
    }
}