(node_factory)
| 369 | |
| 370 | |
| 371 | def test_second_channel(node_factory): |
| 372 | l1, l2, l3 = node_factory.get_nodes(3) |
| 373 | |
| 374 | l1.rpc.connect(l2.info['id'], 'localhost', l2.port) |
| 375 | l1.rpc.connect(l3.info['id'], 'localhost', l3.port) |
| 376 | l1.fundchannel(l2, 10**6) |
| 377 | l1.fundchannel(l3, 10**6) |
| 378 | |
| 379 | |
| 380 | def test_channel_abandon(node_factory, bitcoind): |
nothing calls this directly
no test coverage detected