mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Add method to retry payments
This commit is contained in:
parent
bf527b0ddb
commit
8db9c50b8b
2 changed files with 138 additions and 0 deletions
|
@ -2129,6 +2129,54 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
|
|||
}
|
||||
}
|
||||
|
||||
/// Retries a payment along the given [`Route`].
|
||||
///
|
||||
/// Errors returned are a superset of those returned from [`send_payment`], so see
|
||||
/// [`send_payment`] documentation for more details on errors. This method will also error if the
|
||||
/// retry amount puts the payment more than 10% over the payment's total amount, or if the payment
|
||||
/// for the given `payment_id` cannot be found (likely due to timeout or success).
|
||||
///
|
||||
/// [`send_payment`]: [`ChannelManager::send_payment`]
|
||||
pub fn retry_payment(&self, route: &Route, payment_id: PaymentId) -> Result<(), PaymentSendFailure> {
|
||||
const RETRY_OVERFLOW_PERCENTAGE: u64 = 10;
|
||||
for path in route.paths.iter() {
|
||||
if path.len() == 0 {
|
||||
return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
|
||||
err: "length-0 path in route".to_string()
|
||||
}))
|
||||
}
|
||||
}
|
||||
|
||||
let (total_msat, payment_hash, payment_secret) = {
|
||||
let outbounds = self.pending_outbound_payments.lock().unwrap();
|
||||
if let Some(payment) = outbounds.get(&payment_id) {
|
||||
match payment {
|
||||
PendingOutboundPayment::Retryable {
|
||||
total_msat, payment_hash, payment_secret, pending_amt_msat, ..
|
||||
} => {
|
||||
let retry_amt_msat: u64 = route.paths.iter().map(|path| path.last().unwrap().fee_msat).sum();
|
||||
if retry_amt_msat + *pending_amt_msat > *total_msat * (100 + RETRY_OVERFLOW_PERCENTAGE) / 100 {
|
||||
return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
|
||||
err: format!("retry_amt_msat of {} will put pending_amt_msat (currently: {}) more than 10% over total_payment_amt_msat of {}", retry_amt_msat, pending_amt_msat, total_msat).to_string()
|
||||
}))
|
||||
}
|
||||
(*total_msat, *payment_hash, *payment_secret)
|
||||
},
|
||||
PendingOutboundPayment::Legacy { .. } => {
|
||||
return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
|
||||
err: "Unable to retry payments that were initially sent on LDK versions prior to 0.0.102".to_string()
|
||||
}))
|
||||
}
|
||||
}
|
||||
} else {
|
||||
return Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError {
|
||||
err: "Payment with ID {} not found".to_string()
|
||||
}))
|
||||
}
|
||||
};
|
||||
return self.send_payment_internal(route, payment_hash, &payment_secret, None, Some(payment_id), Some(total_msat)).map(|_| ())
|
||||
}
|
||||
|
||||
/// Send a spontaneous payment, which is a payment that does not require the recipient to have
|
||||
/// generated an invoice. Optionally, you may specify the preimage. If you do choose to specify
|
||||
/// the preimage, it must be a cryptographically secure random value that no intermediate node
|
||||
|
|
|
@ -4183,6 +4183,96 @@ fn mpp_failure() {
|
|||
fail_payment_along_route(&nodes[0], &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], false, payment_hash);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn mpp_retry() {
|
||||
let chanmon_cfgs = create_chanmon_cfgs(4);
|
||||
let node_cfgs = create_node_cfgs(4, &chanmon_cfgs);
|
||||
let node_chanmgrs = create_node_chanmgrs(4, &node_cfgs, &[None, None, None, None]);
|
||||
let nodes = create_network(4, &node_cfgs, &node_chanmgrs);
|
||||
|
||||
let chan_1_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
||||
let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
||||
let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
||||
let chan_4_id = create_announced_chan_between_nodes(&nodes, 3, 2, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
||||
let logger = test_utils::TestLogger::new();
|
||||
// Rebalance
|
||||
send_payment(&nodes[3], &vec!(&nodes[2])[..], 1_500_000);
|
||||
|
||||
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[3]);
|
||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
||||
let mut route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[3].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 1_000_000, TEST_FINAL_CLTV, &logger).unwrap();
|
||||
let path = route.paths[0].clone();
|
||||
route.paths.push(path);
|
||||
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
||||
route.paths[0][0].short_channel_id = chan_1_id;
|
||||
route.paths[0][1].short_channel_id = chan_3_id;
|
||||
route.paths[1][0].pubkey = nodes[2].node.get_our_node_id();
|
||||
route.paths[1][0].short_channel_id = chan_2_id;
|
||||
route.paths[1][1].short_channel_id = chan_4_id;
|
||||
|
||||
// Initiate the MPP payment.
|
||||
let payment_id = nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
||||
check_added_monitors!(nodes[0], 2); // one monitor per path
|
||||
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
||||
assert_eq!(events.len(), 2);
|
||||
|
||||
// Pass half of the payment along the success path.
|
||||
let success_path_msgs = events.remove(0);
|
||||
pass_along_path(&nodes[0], &[&nodes[1], &nodes[3]], 2_000_000, payment_hash, Some(payment_secret), success_path_msgs, false, None);
|
||||
|
||||
// Add the HTLC along the first hop.
|
||||
let fail_path_msgs_1 = events.remove(0);
|
||||
let (update_add, commitment_signed) = match fail_path_msgs_1 {
|
||||
MessageSendEvent::UpdateHTLCs { node_id: _, updates: msgs::CommitmentUpdate { ref update_add_htlcs, ref update_fulfill_htlcs, ref update_fail_htlcs, ref update_fail_malformed_htlcs, ref update_fee, ref commitment_signed } } => {
|
||||
assert_eq!(update_add_htlcs.len(), 1);
|
||||
assert!(update_fail_htlcs.is_empty());
|
||||
assert!(update_fulfill_htlcs.is_empty());
|
||||
assert!(update_fail_malformed_htlcs.is_empty());
|
||||
assert!(update_fee.is_none());
|
||||
(update_add_htlcs[0].clone(), commitment_signed.clone())
|
||||
},
|
||||
_ => panic!("Unexpected event"),
|
||||
};
|
||||
nodes[2].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &update_add);
|
||||
commitment_signed_dance!(nodes[2], nodes[0], commitment_signed, false);
|
||||
|
||||
// Attempt to forward the payment and complete the 2nd path's failure.
|
||||
expect_pending_htlcs_forwardable!(&nodes[2]);
|
||||
expect_pending_htlcs_forwardable!(&nodes[2]);
|
||||
let htlc_updates = get_htlc_update_msgs!(nodes[2], nodes[0].node.get_our_node_id());
|
||||
assert!(htlc_updates.update_add_htlcs.is_empty());
|
||||
assert_eq!(htlc_updates.update_fail_htlcs.len(), 1);
|
||||
assert!(htlc_updates.update_fulfill_htlcs.is_empty());
|
||||
assert!(htlc_updates.update_fail_malformed_htlcs.is_empty());
|
||||
check_added_monitors!(nodes[2], 1);
|
||||
nodes[0].node.handle_update_fail_htlc(&nodes[2].node.get_our_node_id(), &htlc_updates.update_fail_htlcs[0]);
|
||||
commitment_signed_dance!(nodes[0], nodes[2], htlc_updates.commitment_signed, false);
|
||||
expect_payment_failed!(nodes[0], payment_hash, false);
|
||||
|
||||
// Rebalance the channel so the second half of the payment can succeed.
|
||||
send_payment(&nodes[3], &vec!(&nodes[2])[..], 1_500_000);
|
||||
|
||||
// Make sure it errors as expected given a too-large amount.
|
||||
if let Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError { err })) = nodes[0].node.retry_payment(&route, payment_id) {
|
||||
assert!(err.contains("over total_payment_amt_msat"));
|
||||
} else { panic!("Unexpected error"); }
|
||||
|
||||
// Make sure it errors as expected given the wrong payment_id.
|
||||
if let Err(PaymentSendFailure::ParameterError(APIError::APIMisuseError { err })) = nodes[0].node.retry_payment(&route, PaymentId([0; 32])) {
|
||||
assert!(err.contains("not found"));
|
||||
} else { panic!("Unexpected error"); }
|
||||
|
||||
// Retry the second half of the payment and make sure it succeeds.
|
||||
let mut path = route.clone();
|
||||
path.paths.remove(0);
|
||||
nodes[0].node.retry_payment(&path, payment_id).unwrap();
|
||||
check_added_monitors!(nodes[0], 1);
|
||||
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
||||
assert_eq!(events.len(), 1);
|
||||
pass_along_path(&nodes[0], &[&nodes[2], &nodes[3]], 2_000_000, payment_hash, Some(payment_secret), events.pop().unwrap(), true, None);
|
||||
claim_payment_along_route(&nodes[0], &[&[&nodes[1], &nodes[3]], &[&nodes[2], &nodes[3]]], false, payment_preimage);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_dup_htlc_onchain_fails_on_reload() {
|
||||
// When a Channel is closed, any outbound HTLCs which were relayed through it are simply
|
||||
|
|
Loading…
Add table
Reference in a new issue