mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-27 09:53:18 +02:00
test: cleanup rpc_getchaintips.py
Remove whitespace that doesn't conform with pep8 and turn some comments into log messages.
This commit is contained in:
@@ -18,13 +18,14 @@ class GetChainTipsTest (BitcoinTestFramework):
|
|||||||
self.num_nodes = 4
|
self.num_nodes = 4
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
|
self.log.info("Test getchaintips behavior with two chains of different length")
|
||||||
tips = self.nodes[0].getchaintips()
|
tips = self.nodes[0].getchaintips()
|
||||||
assert_equal(len(tips), 1)
|
assert_equal(len(tips), 1)
|
||||||
assert_equal(tips[0]['branchlen'], 0)
|
assert_equal(tips[0]['branchlen'], 0)
|
||||||
assert_equal(tips[0]['height'], 200)
|
assert_equal(tips[0]['height'], 200)
|
||||||
assert_equal(tips[0]['status'], 'active')
|
assert_equal(tips[0]['status'], 'active')
|
||||||
|
|
||||||
# Split the network and build two chains of different lengths.
|
self.log.info("Split the network and build two chains of different lengths.")
|
||||||
self.split_network()
|
self.split_network()
|
||||||
self.generate(self.nodes[0], 10, sync_fun=lambda: self.sync_all(self.nodes[:2]))
|
self.generate(self.nodes[0], 10, sync_fun=lambda: self.sync_all(self.nodes[:2]))
|
||||||
self.generate(self.nodes[2], 20, sync_fun=lambda: self.sync_all(self.nodes[2:]))
|
self.generate(self.nodes[2], 20, sync_fun=lambda: self.sync_all(self.nodes[2:]))
|
||||||
@@ -43,7 +44,7 @@ class GetChainTipsTest (BitcoinTestFramework):
|
|||||||
assert_equal(longTip['height'], 220)
|
assert_equal(longTip['height'], 220)
|
||||||
assert_equal(tips[0]['status'], 'active')
|
assert_equal(tips[0]['status'], 'active')
|
||||||
|
|
||||||
# Join the network halves and check that we now have two tips
|
self.log.info("Join the network halves and check that we now have two tips")
|
||||||
# (at least at the nodes that previously had the short chain).
|
# (at least at the nodes that previously had the short chain).
|
||||||
self.join_network()
|
self.join_network()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user