Fix typo pointed out by hsmiths, thanks
This commit is contained in:
parent
589f695aaf
commit
9d6b353eec
@ -136,6 +136,11 @@ version for the release of 1.0.
|
||||
ChangeLog
|
||||
=========
|
||||
|
||||
Version 0.11.3
|
||||
--------------
|
||||
|
||||
* fixed a typo in lib/peer.py pointed out by hsmiths
|
||||
|
||||
Version 0.11.2
|
||||
--------------
|
||||
|
||||
|
||||
@ -119,7 +119,7 @@ class Peer(object):
|
||||
# ports first.
|
||||
pairs = [('SSL', self.ssl_port), ('TCP', self.tcp_port)]
|
||||
while self.other_port_pairs:
|
||||
pairs.append(other_port_pairs.pop())
|
||||
pairs.append(self.other_port_pairs.pop())
|
||||
return [pair for pair in pairs if pair[1]]
|
||||
|
||||
def mark_bad(self):
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# Server name and protocol versions
|
||||
|
||||
VERSION = 'ElectrumX 0.11.2'
|
||||
VERSION = 'ElectrumX 0.11.3'
|
||||
PROTOCOL_MIN = '1.0'
|
||||
PROTOCOL_MAX = '1.0'
|
||||
|
||||
Loading…
Reference in New Issue
Block a user