(node, scid, is_active)
| 1082 | |
| 1083 | |
| 1084 | def chan_active(node, scid, is_active): |
| 1085 | chans = node.rpc.listchannels(scid)['channels'] |
| 1086 | print(chans) |
| 1087 | return [c['active'] for c in chans] == [is_active, is_active] |
| 1088 | |
| 1089 | |
| 1090 | @pytest.mark.developer("needs DEVELOPER=1", "uses dev-fast-reconnect") |
no test coverage detected