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 a13946b commit d6bc232Copy full SHA for d6bc232
test/functional/p2p_blockfilters.py
@@ -244,6 +244,12 @@ def run_test(self):
244
peer_0.send_message(request)
245
peer_0.wait_for_disconnect()
246
247
+ self.log.info("Test -peerblockfilters without -blockfilterindex raises an error")
248
+ self.stop_node(0)
249
+ self.nodes[0].extra_args = ["-peerblockfilters"]
250
+ msg = "Error: Cannot set -peerblockfilters without -blockfilterindex."
251
+ self.nodes[0].assert_start_raises_init_error(expected_msg=msg)
252
+
253
254
def compute_last_header(prev_header, hashes):
255
"""Compute the last filter header from a starting header and a sequence of filter hashes."""
0 commit comments