tbugfix - electrum-personal-server - Maximally lightweight electrum server for a single user
HTML git clone https://git.parazyd.org/electrum-personal-server
DIR Log
DIR Files
DIR Refs
DIR README
---
DIR commit 4154e827f9bf71b052ce445b4d561774c4b95558
DIR parent 159e97a0dc62bf56a4e397fff186e176beca4e48
HTML Author: chris-belcher <chris-belcher@users.noreply.github.com>
Date: Thu, 29 Mar 2018 12:44:51 +0100
bugfix
Diffstat:
M server.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/server.py b/server.py
t@@ -335,7 +335,7 @@ def get_scriptpubkeys_to_monitor(rpc, config):
watch_only_addresses_to_import = []
if not watch_only_addresses.issubset(imported_addresses):
import_needed = True
- watch_only_addresses_to_import = wallet_addresses - imported_addresses
+ watch_only_addresses_to_import = watch_only_addresses - imported_addresses
#if addresses need to be imported then return them
if import_needed: