We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f78d789 commit 5c543cbCopy full SHA for 5c543cb
1 file changed
tests/integration/blockchain/test_network.py
@@ -102,7 +102,7 @@ async def test_direct_sync(self):
102
await self.ledger.stop()
103
initial_height = self.ledger.local_height_including_downloaded_height
104
await self.blockchain.generate(100)
105
- while self.conductor.spv_node.server.session_manager.notified_height < initial_height + 99: # off by 1
+ while self.conductor.spv_node.server.session_manager.notified_height < initial_height + 100:
106
await asyncio.sleep(0.1)
107
self.assertEqual(initial_height, self.ledger.local_height_including_downloaded_height)
108
await self.ledger.headers.open()
0 commit comments