setup_network does this automatically, so this call is redundant.
Originally, I discovered this while looking for the root cause of this test's
flakiness.
Details
Details
- Reviewers
deadalnix Fabien - Group Reviewers
Restricted Project - Commits
- rSTAGING570a09320a31: Remove redundant connect_nodes call in abc-parkedchain.py
rABC570a09320a31: Remove redundant connect_nodes call in abc-parkedchain.py
for i in {1..150}; do ./test_runner.py abc-parkedchain; done
Test is still flaky, but passes 99%+ of the time with this change still.
Diff Detail
Diff Detail
- Repository
- rABC Bitcoin ABC
- Branch
- arcpatch-D2189
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 4368 Build 6801: Bitcoin ABC Buildbot (legacy) Build 6800: arc lint + arc unit
Event Timeline
test/functional/abc-parkedchain.py | ||
---|---|---|
129 ↗ | (On Diff #6335) | This should not be needed. I suppose that you want the ensure that node tip and parking_node tip is the same, which is tested below. def wait_for_tip(node, tip): def check_tip(): return node.getbestblockhash() == tip wait_until(check_tip) wait_for_tip(parking_node, good_tip) |