mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
Merge #8607: [doc] Fix doxygen off-by-one comments, fix typos
fafe7b3contrib: Make fix-copyright-headers.py more portable (MarcoFalke)fa27c0a[doc] Fix typos in comments, doxygen: Fix comment syntax (MarcoFalke)fabfd5d[qa] pull-tester: Don't mute zmq ImportError (MarcoFalke)67a5502init: Fix typo in help message for -whitelistforcerelay (Wladimir J. van der Laan)
This commit is contained in:
@@ -92,12 +92,12 @@ if not (ENABLE_WALLET == 1 and ENABLE_UTILS == 1 and ENABLE_BITCOIND == 1):
|
||||
if ENABLE_ZMQ:
|
||||
try:
|
||||
import zmq
|
||||
except ImportError as e:
|
||||
print("WARNING: \"import zmq\" failed. Set ENABLE_ZMQ=0 or " \
|
||||
"to run zmq tests, see dependency info in /qa/README.md.")
|
||||
ENABLE_ZMQ=0
|
||||
except ImportError:
|
||||
print("ERROR: \"import zmq\" failed. Set ENABLE_ZMQ=0 or "
|
||||
"to run zmq tests, see dependency info in /qa/README.md.")
|
||||
# ENABLE_ZMQ=0
|
||||
raise
|
||||
|
||||
#Tests
|
||||
testScripts = [
|
||||
# longest test should go first, to favor running tests in parallel
|
||||
'p2p-fullblocktest.py',
|
||||
|
||||
Reference in New Issue
Block a user