electrum-personal-server

Maximally lightweight electrum server for a single user
git clone https://git.parazyd.org/electrum-personal-server
Log | Files | Refs | README

commit 360f358d7c9343cdde17ef431570ced2890fdfd2
parent 9296193ee8048d5ce0803e4b2e005a7a448949a1
Author: chris-belcher <chris-belcher@users.noreply.github.com>
Date:   Thu,  4 Jun 2020 18:10:02 +0100

Update version and release notes for 0.2.1

Diffstat:
Melectrumpersonalserver/server/electrumprotocol.py | 2+-
Mrelease-notes | 17+++++++++++++++++
2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/electrumpersonalserver/server/electrumprotocol.py b/electrumpersonalserver/server/electrumprotocol.py @@ -22,7 +22,7 @@ from electrumpersonalserver.server.merkleproof import ( #protocol documentation #https://github.com/kyuupichan/electrumx/blob/master/docs/protocol-methods.rst -SERVER_VERSION_NUMBER = "0.2.0" +SERVER_VERSION_NUMBER = "0.2.1" SERVER_PROTOCOL_VERSION_MAX = 1.4 SERVER_PROTOCOL_VERSION_MIN = 1.1 diff --git a/release-notes b/release-notes @@ -1,3 +1,20 @@ +# Release v0.2.1 (4th June 2020) + +New release, thanks to contributions by DriftwoodPalace, m-schmoock and wiredcheetah +And thanks to everyone else who contributed via discussion and donations + +* Massive speedup to startup time and initial import of addresses. This is done + using the descriptor wallets feature of Bitcoin Core 0.20. The speedup is + very helpful when running Electrum Personal Server on low powered devices + such as the raspberry pi +* Close the connection to client if it requests an unknown address or if the + connection to the Bitcoin node is lost. The user will see a red dot in + Electrum indicating that something is wrong which should prompt them to fix. +* Increase default polling interval to make the server more responsive to new + transactions and confirmations +* Reduce spam in the debug log and info log +* Various other tweaks and bug fixes + # Release v0.2.0 (5th December 2019) New release, thanks to code contributions by suvayu, andrewtoth and Sosthene00