This is a maintenance release of eclair, which includes several improvements and bug fixes, including:
- a fix for a fee estimation bug which sometimes could have produced transactions that could not be relayed
- a simple scheme for notifying users when a payment has been completed
We strongly recommend that users upgrade their nodes.
Verifying signatures
You will need gpg
and our release signing key 7A73FE77DE2C4027. Note that you can get it:
- from our website: https://acinq.co/pgp/drouinf.asc
- from github user @sstone, a committer on eclair: https://api.github.com/users/sstone/gpg_keys
To import our signing key:
$ gpg --import drouinf.asc
To verify the release file checksums and signatures:
$ gpg -d SHA256SUMS.asc > SHA256SUMS.stripped
$ sha256sum -c SHA256SUMS.stripped
Upgrading
This release is compatible with Eclair v0.2-beta3
. You don't need to close your channels, just stop eclair, upgrade and restart.
Change log
- Filter out non-spendable outputs from bitcoind 'listunspent' call during setup (#605)
- Set a minimum feerate-per-kw of 253 (fixes #602) (#608)
- Inform clients about incoming payments via websocket connection (#610)
- Complete commit logs
Thank you @araspitzu @btcontract !