Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 14 additions & 12 deletions lightningd/pay.c
Original file line number Diff line number Diff line change
Expand Up @@ -2076,19 +2076,11 @@ static struct command_result *json_injectpaymentonion(struct command *cmd,
if (command_check_only(cmd))
return command_check_done(cmd);

register_payment_and_waiter(cmd,
payment_hash,
*partid, *groupid,
*destination_msat, *msat, AMOUNT_MSAT(0),
label, invstring, local_invreq_id,
&shared_secret,
destination);

/* If unknown, we set this equal (so accounting logs 0 fees) */
if (amount_msat_eq(*destination_msat, AMOUNT_MSAT(0)))
*destination_msat = *msat;
failmsg = send_htlc_out(tmpctx, next, *msat,
*cltv, *destination_msat,
*cltv,
/* If unknown, we set this equal (so accounting logs 0 fees) */
amount_msat_eq(*destination_msat, AMOUNT_MSAT(0))
? *msat : *destination_msat,
payment_hash,
next_path_key, NULL, *partid, *groupid,
serialize_onionpacket(tmpctx, rs->next),
Expand All @@ -2098,6 +2090,16 @@ static struct command_result *json_injectpaymentonion(struct command *cmd,
"Could not send to first peer: %s",
onion_wire_name(fromwire_peektype(failmsg)));
}

/* Now HTLC is created, we can add the payment as pending */
register_payment_and_waiter(cmd,
payment_hash,
*partid, *groupid,
*destination_msat, *msat, AMOUNT_MSAT(0),
label, invstring, local_invreq_id,
&shared_secret,
destination);

return command_still_pending(cmd);
}

Expand Down
43 changes: 43 additions & 0 deletions tests/test_pay.py
Original file line number Diff line number Diff line change
Expand Up @@ -6755,6 +6755,49 @@ def test_injectpaymentonion_failures(node_factory, executor):
assert 'onionreply' in err.value.error['data']


def test_injectpaymentonion_peerfail(node_factory, executor):
l1, l2 = node_factory.line_graph(2,
opts=[{'may_reconnect': True,
'dev-no-reconnect': None,
'disconnect': ['=WIRE_UPDATE_ADD_HTLC', '-WIRE_COMMITMENT_SIGNED']},
{'may_reconnect': True,
'dev-no-reconnect': None}])
blockheight = l1.rpc.getinfo()['blockheight']

inv1 = l2.rpc.invoice(1000, "test_injectpaymentonion_peerfail", "test_injectpaymentonion_peerfail")

# First hop for injectpaymentonion is self.
hops = [{'pubkey': l1.info['id'],
'payload': serialize_payload_tlv(1000, 18 + 6, first_scid(l1, l2), blockheight).hex()},
{'pubkey': l2.info['id'],
'payload': serialize_payload_final_tlv(1000, 18, 1000, blockheight, inv1['payment_secret']).hex()}]
onion = l1.rpc.createonion(hops=hops, assocdata=inv1['payment_hash'])

l1.rpc.disconnect(l2.info['id'], force=True)
with pytest.raises(RpcError, match='WIRE_TEMPORARY_CHANNEL_FAILURE'):
l1.rpc.injectpaymentonion(onion=onion['onion'],
payment_hash=inv1['payment_hash'],
amount_msat=1000,
cltv_expiry=blockheight + 18 + 6,
partid=1,
groupid=0)
# In fact, it won't create any sendpays entry, since it fails too early.
assert l1.rpc.listsendpays() == {'payments': []}

# This will hang, since we disconnect once committed. But provides another
# (legitimately) pending payment for our migration code to test.
l1.rpc.connect(l2.info['id'], 'localhost', l2.port)
executor.submit(l1.rpc.injectpaymentonion,
onion=onion['onion'],
payment_hash=inv1['payment_hash'],
amount_msat=1000,
cltv_expiry=blockheight + 18 + 6,
partid=2,
groupid=0)
l1.daemon.wait_for_log("dev_disconnect: =WIRE_UPDATE_ADD_HTLC")
assert [p['status'] for p in l1.rpc.listsendpays()['payments']] == ['pending']


def test_parallel_channels_reserve(node_factory, bitcoind):
"""Tests wether we are able to pay through parallel channels concurrently.
To do that we need to enable strict-forwarding."""
Expand Down
Loading