(self, *, is_active)
| 93 | self.rpc_timeout = 480 |
| 94 | |
| 95 | def test_cltv_info(self, *, is_active): |
| 96 | assert_equal(self.nodes[0].getdeploymentinfo()['deployments']['bip65'], { |
| 97 | "active": is_active, |
| 98 | "height": CLTV_HEIGHT, |
| 99 | "type": "buried", |
| 100 | }, |
| 101 | ) |
| 102 | |
| 103 | def run_test(self): |
| 104 | peer = self.nodes[0].add_p2p_connection(P2PInterface()) |
no test coverage detected