fix subprocesspow keyboard interrupt not being catched
This commit is contained in:
parent
308fca7c22
commit
02fde0ad70
@ -116,8 +116,11 @@ class SubprocessPOW:
|
||||
|
||||
while True:
|
||||
# Break if shutdown received
|
||||
try:
|
||||
if pipe.poll() and pipe.recv() == 'shutdown':
|
||||
break
|
||||
except KeyboardInterrupt:
|
||||
break
|
||||
# Load nonce into block metadata
|
||||
metadata['pow'] = nonce
|
||||
# Serialize metadata, combine with block data
|
||||
|
Loading…
Reference in New Issue
Block a user