We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac5c499 commit 4e33c24Copy full SHA for 4e33c24
test/functional/feature_masternode_params.py
@@ -72,7 +72,7 @@ def run_test(self):
72
73
self.log.info("Test that masternode parameter interaction is logged")
74
# Check debug log for parameter interaction messages
75
- with open(node1.debug_log_path, 'r') as f:
+ with open(node1.debug_log_path, 'r', encoding='utf-8') as f:
76
log_content = f.read()
77
assert "parameter interaction: -masternodeblsprivkey set -> setting -disablewallet=1" in log_content
78
# Note: The peerblockfilters and blockfilterindex messages won't be in the log
0 commit comments