tfix #3922: wrong parameter passed to connection_down - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit d38a50b119aa15a2be5cba504eb5d7c0a144d56b
DIR parent 8329faf760ebafa6d13fa18f43690dd15bb773ed
HTML Author: ThomasV <thomasv@electrum.org>
Date: Fri, 23 Feb 2018 09:35:07 +0100
fix #3922: wrong parameter passed to connection_down
Diffstat:
M lib/network.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/lib/network.py b/lib/network.py
t@@ -991,7 +991,7 @@ class Network(util.DaemonThread):
if not height:
return
if height < self.max_checkpoint():
- self.connection_down(interface)
+ self.connection_down(interface.server)
return
interface.tip_header = header
interface.tip = height