(node_factory, bitcoind, chainparams)
| 520 | @pytest.mark.developer("uses dev-disconnect") |
| 521 | @pytest.mark.openchannel('v2') |
| 522 | def test_rbf_reconnect_init(node_factory, bitcoind, chainparams): |
| 523 | disconnects = ['-WIRE_INIT_RBF', |
| 524 | '+WIRE_INIT_RBF'] |
| 525 | |
| 526 | l1, l2 = node_factory.get_nodes(2, |
| 527 | opts=[{'disconnect': disconnects, |
| 528 | 'may_reconnect': True}, |
| 529 | {'may_reconnect': True}]) |
| 530 | |
| 531 | l1.rpc.connect(l2.info['id'], 'localhost', l2.port) |
| 532 | amount = 2**24 |
| 533 | chan_amount = 100000 |
| 534 | bitcoind.rpc.sendtoaddress(l1.rpc.newaddr()['bech32'], amount / 10**8 + 0.01) |
| 535 | bitcoind.generate_block(1) |
| 536 | # Wait for it to arrive. |
| 537 | wait_for(lambda: len(l1.rpc.listfunds()['outputs']) > 0) |
| 538 | |
| 539 | res = l1.rpc.fundchannel(l2.info['id'], chan_amount) |
| 540 | chan_id = res['channel_id'] |
| 541 | vins = bitcoind.rpc.decoderawtransaction(res['tx'])['vin'] |
| 542 | assert(only_one(vins)) |
| 543 | prev_utxos = ["{}:{}".format(vins[0]['txid'], vins[0]['vout'])] |
| 544 | |
| 545 | # Check that we're waiting for lockin |
| 546 | l1.daemon.wait_for_log(' to DUALOPEND_AWAITING_LOCKIN') |
| 547 | |
| 548 | next_feerate = find_next_feerate(l1, l2) |
| 549 | |
| 550 | # Initiate an RBF |
| 551 | startweight = 42 + 172 # base weight, funding output |
| 552 | initpsbt = l1.rpc.utxopsbt(chan_amount, next_feerate, startweight, |
| 553 | prev_utxos, reservedok=True, |
| 554 | min_witness_weight=110, |
| 555 | excess_as_change=True) |
| 556 | |
| 557 | # Do the bump!? |
| 558 | for d in disconnects: |
| 559 | l1.rpc.connect(l2.info['id'], 'localhost', l2.port) |
| 560 | with pytest.raises(RpcError): |
| 561 | l1.rpc.openchannel_bump(chan_id, chan_amount, initpsbt['psbt']) |
| 562 | assert l1.rpc.getpeer(l2.info['id']) is not None |
| 563 | |
| 564 | # This should succeed |
| 565 | l1.rpc.connect(l2.info['id'], 'localhost', l2.port) |
| 566 | l1.rpc.openchannel_bump(chan_id, chan_amount, initpsbt['psbt']) |
| 567 | |
| 568 | |
| 569 | @unittest.skipIf(TEST_NETWORK != 'regtest', 'elementsd doesnt yet support PSBT features we need') |
nothing calls this directly
no test coverage detected