Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Electrum-RVN-SIG committed Oct 26, 2021
1 parent 43ccd10 commit c701388
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion electrum/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ async def stop_async():
remove_lockfile(get_lockfile(self.config))
self.logger.info("stopped")
header_verification.end_process()
self.logger.info("ended verification daemon")
self.logger.info("ended verification process")
self.asyncio_loop.call_soon_threadsafe(self.stopped_event.set)

def run_gui(self, config, plugins):
Expand Down
6 changes: 6 additions & 0 deletions electrum/header_verification.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Minimize imports to decrease overhead
# Changes to blockchain.py must be reflected here

import hashlib
import multiprocessing
import struct
Expand Down Expand Up @@ -358,14 +361,17 @@ def _verify_process(q_in, q_out):
q_out.put(e)


# Blocking, but shouldn't block
def verify_chunk(data_tup):
return queue_in.put(data_tup)


# Blocking, will block
def get_verify_result():
return queue_out.get()


# Blocking, but shouldn't block
def end_process():
queue_in.put('STOP')
_proc.join()
Expand Down
2 changes: 1 addition & 1 deletion electrum/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ELECTRUM_VERSION = '0.4.2' # version of the client package
ELECTRUM_VERSION = '0.4.3' # version of the client package
APK_VERSION = '4.1.5.0' # read by buildozer.spec

PROTOCOL_VERSION = '1.9' # protocol version requested
Expand Down

0 comments on commit c701388

Please sign in to comment.