Browse Source

Merge branch 'release-0.2'

master 0.2
Neil Booth 8 years ago
parent
commit
2dfd695066
  1. 5
      RELEASE-NOTES
  2. 4
      samples/scripts/run
  3. 2
      server/block_processor.py
  4. 2
      server/version.py

5
RELEASE-NOTES

@ -1,3 +1,8 @@
Version 0.2
-----------
- update sample run script, remove empty addresses from mempool
Version 0.1
------------

4
samples/scripts/run

@ -1,3 +1,3 @@
#!/bin/sh
j#!/bin/sh
echo "Launching ElectrumX server..."
exec 2>&1 envdir ./env /bin/sh -c 'envuidgid $USERNAME python3 $SERVER_MAIN'
exec 2>&1 envdir ./env /bin/sh -c 'envuidgid $USERNAME python3 $ELECTRUMX'

2
server/block_processor.py

@ -190,6 +190,8 @@ class MemPool(LoggedClass):
hash168s.update(hash168 for hash168, value in txout_pairs)
for hash168 in hash168s:
self.hash168s[hash168].remove(hex_hash)
if not self.hash168s[hash168]:
del self.hash168s[hash168]
touched.update(hash168s)
# Get the raw transactions for the new hashes. Ignore the

2
server/version.py

@ -1 +1 @@
VERSION = "ElectrumX 0.1"
VERSION = "ElectrumX 0.2"

Loading…
Cancel
Save