From 7d933d876d76cfd490b353fb5c57ba5a62be685e Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Wed, 16 Oct 2024 13:30:51 +0300 Subject: [PATCH] test: should have no spork with an empty name --- test/functional/feature_sporks.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/functional/feature_sporks.py b/test/functional/feature_sporks.py index 46e96c81e5..b6b5fdf7b8 100755 --- a/test/functional/feature_sporks.py +++ b/test/functional/feature_sporks.py @@ -59,5 +59,8 @@ class SporkTest(BitcoinTestFramework): self.connect_nodes(1, 2) self.wait_until(lambda: self.get_test_spork_state(self.nodes[2]), timeout=10) + assert "" not in self.nodes[0].spork('show').keys() + + if __name__ == '__main__': SporkTest().main()