Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions hathor_tests/consensus/test_soft_voided.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ def _run_test(

yield gen_tx2

gen_tx2.stop()

self.assertEqual(1, len(soft_voided_tx_ids))
txA_hash = list(soft_voided_tx_ids)[0]

Expand Down
2 changes: 1 addition & 1 deletion hathor_tests/simulation/test_simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def test_new_syncing_peer(self) -> None:
for hashpower in [10e6, 8e6, 5e6]:
manager = self.create_peer()
for node in nodes:
conn = FakeConnection(manager, node, latency=0.085)
conn = FakeConnection(manager, node, latency=0.085, autoreconnect=True)
self.simulator.add_connection(conn)
nodes.append(manager)

Expand Down
Loading