mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Replace get_route with get_route_and_payment_hash
The interface for get_route will change to take a scorer. Using get_route_and_payment_hash whenever possible allows for keeping the scorer inside get_route_and_payment_hash rather than at every call site. Replace get_route with get_route_and_payment_hash wherever possible. Additionally, update get_route_and_payment_hash to use the known invoice features and the sending node's logger.
This commit is contained in:
parent
3fc035267c
commit
0a5ccd1f13
8 changed files with 134 additions and 374 deletions
|
@ -22,10 +22,9 @@ use chain::Listen;
|
||||||
use chain::Watch;
|
use chain::Watch;
|
||||||
use ln::{PaymentPreimage, PaymentHash};
|
use ln::{PaymentPreimage, PaymentHash};
|
||||||
use ln::channelmanager::{ChannelManager, ChannelManagerReadArgs, RAACommitmentOrder, PaymentSendFailure};
|
use ln::channelmanager::{ChannelManager, ChannelManagerReadArgs, RAACommitmentOrder, PaymentSendFailure};
|
||||||
use ln::features::{InitFeatures, InvoiceFeatures};
|
use ln::features::InitFeatures;
|
||||||
use ln::msgs;
|
use ln::msgs;
|
||||||
use ln::msgs::{ChannelMessageHandler, ErrorAction, RoutingMessageHandler};
|
use ln::msgs::{ChannelMessageHandler, ErrorAction, RoutingMessageHandler};
|
||||||
use routing::router::get_route;
|
|
||||||
use util::config::UserConfig;
|
use util::config::UserConfig;
|
||||||
use util::enforcing_trait_impls::EnforcingSigner;
|
use util::enforcing_trait_impls::EnforcingSigner;
|
||||||
use util::events::{Event, MessageSendEvent, MessageSendEventsProvider, PaymentPurpose, ClosureReason};
|
use util::events::{Event, MessageSendEvent, MessageSendEventsProvider, PaymentPurpose, ClosureReason};
|
||||||
|
@ -53,16 +52,13 @@ fn do_test_simple_monitor_permanent_update_fail(persister_fail: bool) {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(&nodes[1]);
|
let (route, payment_hash_1, _, payment_secret_1) = get_route_and_payment_hash!(&nodes[0], nodes[1], 1000000);
|
||||||
|
|
||||||
match persister_fail {
|
match persister_fail {
|
||||||
true => chanmon_cfgs[0].persister.set_update_ret(Err(ChannelMonitorUpdateErr::PermanentFailure)),
|
true => chanmon_cfgs[0].persister.set_update_ret(Err(ChannelMonitorUpdateErr::PermanentFailure)),
|
||||||
false => *nodes[0].chain_monitor.update_ret.lock().unwrap() = Some(Err(ChannelMonitorUpdateErr::PermanentFailure))
|
false => *nodes[0].chain_monitor.update_ret.lock().unwrap() = Some(Err(ChannelMonitorUpdateErr::PermanentFailure))
|
||||||
}
|
}
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)), true, APIError::ChannelUnavailable {..}, {});
|
unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)), true, APIError::ChannelUnavailable {..}, {});
|
||||||
check_added_monitors!(nodes[0], 2);
|
check_added_monitors!(nodes[0], 2);
|
||||||
|
|
||||||
|
@ -176,9 +172,8 @@ fn do_test_simple_monitor_temporary_update_fail(disconnect: bool, persister_fail
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (payment_preimage_1, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(&nodes[1]);
|
let (route, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(&nodes[0], nodes[1], 1000000);
|
||||||
|
|
||||||
match persister_fail {
|
match persister_fail {
|
||||||
true => chanmon_cfgs[0].persister.set_update_ret(Err(ChannelMonitorUpdateErr::TemporaryFailure)),
|
true => chanmon_cfgs[0].persister.set_update_ret(Err(ChannelMonitorUpdateErr::TemporaryFailure)),
|
||||||
|
@ -186,8 +181,6 @@ fn do_test_simple_monitor_temporary_update_fail(disconnect: bool, persister_fail
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)), false, APIError::MonitorUpdateFailed, {});
|
unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)), false, APIError::MonitorUpdateFailed, {});
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -239,14 +232,12 @@ fn do_test_simple_monitor_temporary_update_fail(disconnect: bool, persister_fail
|
||||||
claim_payment(&nodes[0], &[&nodes[1]], payment_preimage_1);
|
claim_payment(&nodes[0], &[&nodes[1]], payment_preimage_1);
|
||||||
|
|
||||||
// Now set it to failed again...
|
// Now set it to failed again...
|
||||||
let (_, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(&nodes[1]);
|
let (route, payment_hash_2, _, payment_secret_2) = get_route_and_payment_hash!(&nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
match persister_fail {
|
match persister_fail {
|
||||||
true => chanmon_cfgs[0].persister.set_update_ret(Err(ChannelMonitorUpdateErr::TemporaryFailure)),
|
true => chanmon_cfgs[0].persister.set_update_ret(Err(ChannelMonitorUpdateErr::TemporaryFailure)),
|
||||||
false => *nodes[0].chain_monitor.update_ret.lock().unwrap() = Some(Err(ChannelMonitorUpdateErr::TemporaryFailure))
|
false => *nodes[0].chain_monitor.update_ret.lock().unwrap() = Some(Err(ChannelMonitorUpdateErr::TemporaryFailure))
|
||||||
}
|
}
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)), false, APIError::MonitorUpdateFailed, {});
|
unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)), false, APIError::MonitorUpdateFailed, {});
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -308,16 +299,13 @@ fn do_test_monitor_temporary_update_fail(disconnect_count: usize) {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
|
let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
|
||||||
|
|
||||||
// Now try to send a second payment which will fail to send
|
// Now try to send a second payment which will fail to send
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
*nodes[0].chain_monitor.update_ret.lock().unwrap() = Some(Err(ChannelMonitorUpdateErr::TemporaryFailure));
|
*nodes[0].chain_monitor.update_ret.lock().unwrap() = Some(Err(ChannelMonitorUpdateErr::TemporaryFailure));
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)), false, APIError::MonitorUpdateFailed, {});
|
unwrap_send_err!(nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)), false, APIError::MonitorUpdateFailed, {});
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -651,12 +639,9 @@ fn test_monitor_update_fail_cs() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, payment_preimage, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -746,12 +731,9 @@ fn test_monitor_update_fail_no_rebroadcast() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (payment_preimage_1, our_payment_hash, payment_secret_1) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(payment_secret_1)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(payment_secret_1)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -796,22 +778,17 @@ fn test_monitor_update_raa_while_paused() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
send_payment(&nodes[0], &[&nodes[1]], 5000000);
|
send_payment(&nodes[0], &[&nodes[1]], 5000000);
|
||||||
let (payment_preimage_1, our_payment_hash_1, our_payment_secret_1) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash_1, payment_preimage_1, our_payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash_1, &Some(our_payment_secret_1)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash_1, &Some(our_payment_secret_1)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
let send_event_1 = SendEvent::from_event(nodes[0].node.get_and_clear_pending_msg_events().remove(0));
|
let send_event_1 = SendEvent::from_event(nodes[0].node.get_and_clear_pending_msg_events().remove(0));
|
||||||
|
|
||||||
let (payment_preimage_2, our_payment_hash_2, our_payment_secret_2) = get_payment_preimage_hash!(nodes[0]);
|
let (route, our_payment_hash_2, payment_preimage_2, our_payment_secret_2) = get_route_and_payment_hash!(nodes[1], nodes[0], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[1].node.send_payment(&route, our_payment_hash_2, &Some(our_payment_secret_2)).unwrap();
|
nodes[1].node.send_payment(&route, our_payment_hash_2, &Some(our_payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[1], 1);
|
check_added_monitors!(nodes[1], 1);
|
||||||
}
|
}
|
||||||
|
@ -874,7 +851,6 @@ fn do_test_monitor_update_fail_raa(test_ignore_second_cs: bool) {
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Rebalance a bit so that we can send backwards from 2 to 1.
|
// Rebalance a bit so that we can send backwards from 2 to 1.
|
||||||
send_payment(&nodes[0], &[&nodes[1], &nodes[2]], 5000000);
|
send_payment(&nodes[0], &[&nodes[1], &nodes[2]], 5000000);
|
||||||
|
@ -900,10 +876,8 @@ fn do_test_monitor_update_fail_raa(test_ignore_second_cs: bool) {
|
||||||
|
|
||||||
// While the second channel is AwaitingRAA, forward a second payment to get it into the
|
// While the second channel is AwaitingRAA, forward a second payment to get it into the
|
||||||
// holding cell.
|
// holding cell.
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[2]);
|
let (route, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[2], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -927,10 +901,8 @@ fn do_test_monitor_update_fail_raa(test_ignore_second_cs: bool) {
|
||||||
|
|
||||||
// Forward a third payment which will also be added to the holding cell, despite the channel
|
// Forward a third payment which will also be added to the holding cell, despite the channel
|
||||||
// being paused waiting a monitor update.
|
// being paused waiting a monitor update.
|
||||||
let (_, payment_hash_3, payment_secret_3) = get_payment_preimage_hash!(nodes[2]);
|
let (route, payment_hash_3, _, payment_secret_3) = get_route_and_payment_hash!(nodes[0], nodes[2], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_3, &Some(payment_secret_3)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_3, &Some(payment_secret_3)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -949,9 +921,7 @@ fn do_test_monitor_update_fail_raa(test_ignore_second_cs: bool) {
|
||||||
|
|
||||||
let (payment_preimage_4, payment_hash_4) = if test_ignore_second_cs {
|
let (payment_preimage_4, payment_hash_4) = if test_ignore_second_cs {
|
||||||
// Try to route another payment backwards from 2 to make sure 1 holds off on responding
|
// Try to route another payment backwards from 2 to make sure 1 holds off on responding
|
||||||
let (payment_preimage_4, payment_hash_4, payment_secret_4) = get_payment_preimage_hash!(nodes[0]);
|
let (route, payment_hash_4, payment_preimage_4, payment_secret_4) = get_route_and_payment_hash!(nodes[2], nodes[0], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[2].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[2].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[2].node.send_payment(&route, payment_hash_4, &Some(payment_secret_4)).unwrap();
|
nodes[2].node.send_payment(&route, payment_hash_4, &Some(payment_secret_4)).unwrap();
|
||||||
check_added_monitors!(nodes[2], 1);
|
check_added_monitors!(nodes[2], 1);
|
||||||
|
|
||||||
|
@ -1239,9 +1209,8 @@ fn raa_no_response_awaiting_raa_state() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (payment_preimage_1, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[1]);
|
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[1]);
|
||||||
let (payment_preimage_3, payment_hash_3, payment_secret_3) = get_payment_preimage_hash!(nodes[1]);
|
let (payment_preimage_3, payment_hash_3, payment_secret_3) = get_payment_preimage_hash!(nodes[1]);
|
||||||
|
|
||||||
|
@ -1251,8 +1220,6 @@ fn raa_no_response_awaiting_raa_state() {
|
||||||
// requires only an RAA response due to AwaitingRAA) we can deliver the RAA and require the CS
|
// requires only an RAA response due to AwaitingRAA) we can deliver the RAA and require the CS
|
||||||
// generation during RAA while in monitor-update-failed state.
|
// generation during RAA while in monitor-update-failed state.
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
|
@ -1305,8 +1272,6 @@ fn raa_no_response_awaiting_raa_state() {
|
||||||
// chanmon_fail_consistency test required it to actually find the bug (by seeing out-of-sync
|
// chanmon_fail_consistency test required it to actually find the bug (by seeing out-of-sync
|
||||||
// commitment transaction states) whereas here we can explicitly check for it.
|
// commitment transaction states) whereas here we can explicitly check for it.
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_3, &Some(payment_secret_3)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_3, &Some(payment_secret_3)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 0);
|
check_added_monitors!(nodes[0], 0);
|
||||||
assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
|
assert!(nodes[0].node.get_and_clear_pending_msg_events().is_empty());
|
||||||
|
@ -1363,7 +1328,6 @@ fn claim_while_disconnected_monitor_update_fail() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Forward a payment for B to claim
|
// Forward a payment for B to claim
|
||||||
let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
|
let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
|
||||||
|
@ -1395,10 +1359,8 @@ fn claim_while_disconnected_monitor_update_fail() {
|
||||||
|
|
||||||
// Send a second payment from A to B, resulting in a commitment update that gets swallowed with
|
// Send a second payment from A to B, resulting in a commitment update that gets swallowed with
|
||||||
// the monitor still failed
|
// the monitor still failed
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -1488,14 +1450,11 @@ fn monitor_failed_no_reestablish_response() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Route the payment and deliver the initial commitment_signed (with a monitor update failure
|
// Route the payment and deliver the initial commitment_signed (with a monitor update failure
|
||||||
// on receipt).
|
// on receipt).
|
||||||
let (payment_preimage_1, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -1564,14 +1523,11 @@ fn first_message_on_recv_ordering() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Route the first payment outbound, holding the last RAA for B until we are set up so that we
|
// Route the first payment outbound, holding the last RAA for B until we are set up so that we
|
||||||
// can deliver it and fail the monitor update.
|
// can deliver it and fail the monitor update.
|
||||||
let (payment_preimage_1, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -1593,10 +1549,8 @@ fn first_message_on_recv_ordering() {
|
||||||
let as_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
|
let as_raa = get_event_msg!(nodes[0], MessageSendEvent::SendRevokeAndACK, nodes[1].node.get_our_node_id());
|
||||||
|
|
||||||
// Route the second payment, generating an update_add_htlc/commitment_signed
|
// Route the second payment, generating an update_add_htlc/commitment_signed
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -1662,7 +1616,6 @@ fn test_monitor_update_fail_claim() {
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Rebalance a bit so that we can send backwards from 3 to 2.
|
// Rebalance a bit so that we can send backwards from 3 to 2.
|
||||||
send_payment(&nodes[0], &[&nodes[1], &nodes[2]], 5000000);
|
send_payment(&nodes[0], &[&nodes[1], &nodes[2]], 5000000);
|
||||||
|
@ -1679,11 +1632,8 @@ fn test_monitor_update_fail_claim() {
|
||||||
// already-signed commitment transaction and will instead wait for it to resolve before
|
// already-signed commitment transaction and will instead wait for it to resolve before
|
||||||
// forwarding the payment onwards.
|
// forwarding the payment onwards.
|
||||||
|
|
||||||
let (_, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[0]);
|
let (route, payment_hash_2, _, payment_secret_2) = get_route_and_payment_hash!(nodes[2], nodes[0], 1_000_000);
|
||||||
let route;
|
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[2].net_graph_msg_handler;
|
|
||||||
route = get_route(&nodes[2].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1_000_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[2].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[2].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[2], 1);
|
check_added_monitors!(nodes[2], 1);
|
||||||
}
|
}
|
||||||
|
@ -1775,7 +1725,6 @@ fn test_monitor_update_on_pending_forwards() {
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Rebalance a bit so that we can send backwards from 3 to 1.
|
// Rebalance a bit so that we can send backwards from 3 to 1.
|
||||||
send_payment(&nodes[0], &[&nodes[1], &nodes[2]], 5000000);
|
send_payment(&nodes[0], &[&nodes[1], &nodes[2]], 5000000);
|
||||||
|
@ -1790,10 +1739,8 @@ fn test_monitor_update_on_pending_forwards() {
|
||||||
commitment_signed_dance!(nodes[1], nodes[2], cs_fail_update.commitment_signed, true, true);
|
commitment_signed_dance!(nodes[1], nodes[2], cs_fail_update.commitment_signed, true, true);
|
||||||
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
|
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
|
||||||
|
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[0]);
|
let (route, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[2], nodes[0], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[2].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[2].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[2].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[2].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[2], 1);
|
check_added_monitors!(nodes[2], 1);
|
||||||
}
|
}
|
||||||
|
@ -1847,16 +1794,13 @@ fn monitor_update_claim_fail_no_response() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
let channel_id = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Forward a payment for B to claim
|
// Forward a payment for B to claim
|
||||||
let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
|
let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
|
||||||
|
|
||||||
// Now start forwarding a second payment, skipping the last RAA so B is in AwaitingRAA
|
// Now start forwarding a second payment, skipping the last RAA so B is in AwaitingRAA
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -2015,10 +1959,8 @@ fn test_path_paused_mpp() {
|
||||||
let (chan_2_ann, _, chan_2_id, _) = create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known());
|
let (chan_2_ann, _, chan_2_id, _) = create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
let chan_3_id = create_announced_chan_between_nodes(&nodes, 1, 3, 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, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[3]);
|
let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
|
||||||
let mut route = get_route(&nodes[0].node.get_our_node_id(), &nodes[0].net_graph_msg_handler.network_graph, &nodes[3].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
// Set us up to take multiple routes, one 0 -> 1 -> 3 and one 0 -> 2 -> 3:
|
// Set us up to take multiple routes, one 0 -> 1 -> 3 and one 0 -> 2 -> 3:
|
||||||
let path = route.paths[0].clone();
|
let path = route.paths[0].clone();
|
||||||
|
@ -2082,9 +2024,7 @@ fn test_pending_update_fee_ack_on_reconnect() {
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
send_payment(&nodes[0], &[&nodes[1]], 100_000_00);
|
send_payment(&nodes[0], &[&nodes[1]], 100_000_00);
|
||||||
|
|
||||||
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[0]);
|
let (route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[1], nodes[0], 1_000_000);
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &nodes[1].net_graph_msg_handler.network_graph,
|
|
||||||
&nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1_000_000, TEST_FINAL_CLTV, nodes[1].logger).unwrap();
|
|
||||||
nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[1], 1);
|
check_added_monitors!(nodes[1], 1);
|
||||||
let bs_initial_send_msgs = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
|
let bs_initial_send_msgs = get_htlc_update_msgs!(nodes[1], nodes[0].node.get_our_node_id());
|
||||||
|
@ -2265,7 +2205,7 @@ fn do_channel_holding_cell_serialize(disconnect: bool, reload_a: bool) {
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
|
|
||||||
let chan_id = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 15_000_000, 7_000_000_000, InitFeatures::known(), InitFeatures::known()).2;
|
let chan_id = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 15_000_000, 7_000_000_000, InitFeatures::known(), InitFeatures::known()).2;
|
||||||
let (payment_preimage_1, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(&nodes[1]);
|
let (route, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100000);
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(&nodes[1]);
|
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(&nodes[1]);
|
||||||
|
|
||||||
// Do a really complicated dance to get an HTLC into the holding cell, with MonitorUpdateFailed
|
// Do a really complicated dance to get an HTLC into the holding cell, with MonitorUpdateFailed
|
||||||
|
@ -2289,11 +2229,6 @@ fn do_channel_holding_cell_serialize(disconnect: bool, reload_a: bool) {
|
||||||
// will not be freed from the holding cell.
|
// will not be freed from the holding cell.
|
||||||
let (payment_preimage_0, _, _) = route_payment(&nodes[1], &[&nodes[0]], 100000);
|
let (payment_preimage_0, _, _) = route_payment(&nodes[1], &[&nodes[0]], 100000);
|
||||||
|
|
||||||
let route = {
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), None, None, &Vec::new(), 100000, TEST_FINAL_CLTV, nodes[0].logger).unwrap()
|
|
||||||
};
|
|
||||||
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let send = SendEvent::from_node(&nodes[0]);
|
let send = SendEvent::from_node(&nodes[0]);
|
||||||
|
@ -2477,9 +2412,7 @@ fn do_test_reconnect_dup_htlc_claims(htlc_status: HTLCStatusAtDupClaim, second_f
|
||||||
if htlc_status == HTLCStatusAtDupClaim::HoldingCell {
|
if htlc_status == HTLCStatusAtDupClaim::HoldingCell {
|
||||||
// In order to get the HTLC claim into the holding cell at nodes[1], we need nodes[1] to be
|
// In order to get the HTLC claim into the holding cell at nodes[1], we need nodes[1] to be
|
||||||
// awaiting a remote revoke_and_ack from nodes[0].
|
// awaiting a remote revoke_and_ack from nodes[0].
|
||||||
let (_, second_payment_hash, second_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, second_payment_hash, _, second_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &nodes[0].net_graph_msg_handler.network_graph,
|
|
||||||
&nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100_000, TEST_FINAL_CLTV, nodes[1].logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, second_payment_hash, &Some(second_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, second_payment_hash, &Some(second_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
|
|
@ -5943,12 +5943,9 @@ mod tests {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// First, send a partial MPP payment.
|
// First, send a partial MPP payment.
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
let (route, our_payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100_000);
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let (payment_preimage, our_payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[1]);
|
|
||||||
let payment_id = PaymentId([42; 32]);
|
let payment_id = PaymentId([42; 32]);
|
||||||
// Use the utility function send_payment_along_path to send the payment with MPP data which
|
// Use the utility function send_payment_along_path to send the payment with MPP data which
|
||||||
// indicates there are more HTLCs coming.
|
// indicates there are more HTLCs coming.
|
||||||
|
@ -6201,12 +6198,9 @@ mod tests {
|
||||||
let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, 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_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, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Marshall an MPP route.
|
// Marshall an MPP route.
|
||||||
let (_, payment_hash, _) = get_payment_preimage_hash!(&nodes[3]);
|
let (mut route, payment_hash, _, _) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
|
||||||
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, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let path = route.paths[0].clone();
|
let path = route.paths[0].clone();
|
||||||
route.paths.push(path);
|
route.paths.push(path);
|
||||||
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
||||||
|
|
|
@ -972,12 +972,17 @@ macro_rules! commitment_signed_dance {
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! get_payment_preimage_hash {
|
macro_rules! get_payment_preimage_hash {
|
||||||
($dest_node: expr) => {
|
($dest_node: expr) => {
|
||||||
|
{
|
||||||
|
get_payment_preimage_hash!($dest_node, None)
|
||||||
|
}
|
||||||
|
};
|
||||||
|
($dest_node: expr, $min_value_msat: expr) => {
|
||||||
{
|
{
|
||||||
let mut payment_count = $dest_node.network_payment_count.borrow_mut();
|
let mut payment_count = $dest_node.network_payment_count.borrow_mut();
|
||||||
let payment_preimage = PaymentPreimage([*payment_count; 32]);
|
let payment_preimage = PaymentPreimage([*payment_count; 32]);
|
||||||
*payment_count += 1;
|
*payment_count += 1;
|
||||||
let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
|
let payment_hash = PaymentHash(Sha256::hash(&payment_preimage.0[..]).into_inner());
|
||||||
let payment_secret = $dest_node.node.create_inbound_payment_for_hash(payment_hash, None, 7200, 0).unwrap();
|
let payment_secret = $dest_node.node.create_inbound_payment_for_hash(payment_hash, $min_value_msat, 7200, 0).unwrap();
|
||||||
(payment_preimage, payment_hash, payment_secret)
|
(payment_preimage, payment_hash, payment_secret)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -986,13 +991,17 @@ macro_rules! get_payment_preimage_hash {
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
macro_rules! get_route_and_payment_hash {
|
macro_rules! get_route_and_payment_hash {
|
||||||
($send_node: expr, $recv_node: expr, $recv_value: expr) => {{
|
($send_node: expr, $recv_node: expr, $recv_value: expr) => {{
|
||||||
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!($recv_node);
|
get_route_and_payment_hash!($send_node, $recv_node, vec![], $recv_value, TEST_FINAL_CLTV)
|
||||||
|
}};
|
||||||
|
($send_node: expr, $recv_node: expr, $last_hops: expr, $recv_value: expr, $cltv: expr) => {{
|
||||||
|
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!($recv_node, Some($recv_value));
|
||||||
let net_graph_msg_handler = &$send_node.net_graph_msg_handler;
|
let net_graph_msg_handler = &$send_node.net_graph_msg_handler;
|
||||||
let route = get_route(&$send_node.node.get_our_node_id(),
|
let route = ::routing::router::get_route(
|
||||||
&net_graph_msg_handler.network_graph,
|
&$send_node.node.get_our_node_id(), &net_graph_msg_handler.network_graph,
|
||||||
&$recv_node.node.get_our_node_id(), None,
|
&$recv_node.node.get_our_node_id(), Some(::ln::features::InvoiceFeatures::known()),
|
||||||
Some(&$send_node.node.list_usable_channels().iter().map(|a| a).collect::<Vec<_>>()),
|
Some(&$send_node.node.list_usable_channels().iter().collect::<Vec<_>>()),
|
||||||
&Vec::new(), $recv_value, TEST_FINAL_CLTV, $send_node.logger).unwrap();
|
&$last_hops, $recv_value, $cltv, $send_node.logger
|
||||||
|
).unwrap();
|
||||||
(route, payment_hash, payment_preimage, payment_secret)
|
(route, payment_hash, payment_preimage, payment_secret)
|
||||||
}}
|
}}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,8 +23,8 @@ use ln::channelmanager::{ChannelManager, ChannelManagerReadArgs, PaymentId, RAAC
|
||||||
use ln::channel::{Channel, ChannelError};
|
use ln::channel::{Channel, ChannelError};
|
||||||
use ln::{chan_utils, onion_utils};
|
use ln::{chan_utils, onion_utils};
|
||||||
use ln::chan_utils::HTLC_SUCCESS_TX_WEIGHT;
|
use ln::chan_utils::HTLC_SUCCESS_TX_WEIGHT;
|
||||||
use routing::router::{Route, RouteHop, RouteHint, RouteHintHop, get_route, get_keysend_route};
|
|
||||||
use routing::network_graph::{NetworkUpdate, RoutingFees};
|
use routing::network_graph::{NetworkUpdate, RoutingFees};
|
||||||
|
use routing::router::{Route, RouteHop, RouteHint, RouteHintHop, get_route, get_keysend_route};
|
||||||
use ln::features::{ChannelFeatures, InitFeatures, InvoiceFeatures, NodeFeatures};
|
use ln::features::{ChannelFeatures, InitFeatures, InvoiceFeatures, NodeFeatures};
|
||||||
use ln::msgs;
|
use ln::msgs;
|
||||||
use ln::msgs::{ChannelMessageHandler, RoutingMessageHandler, ErrorAction};
|
use ln::msgs::{ChannelMessageHandler, RoutingMessageHandler, ErrorAction};
|
||||||
|
@ -126,7 +126,6 @@ fn test_async_inbound_update_fee() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// balancing
|
// balancing
|
||||||
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
|
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
|
||||||
|
@ -168,9 +167,8 @@ fn test_async_inbound_update_fee() {
|
||||||
nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
|
nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
|
||||||
|
|
||||||
// ...but before it's delivered, nodes[1] starts to send a payment back to nodes[0]...
|
// ...but before it's delivered, nodes[1] starts to send a payment back to nodes[0]...
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[0]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 40000);
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
nodes[1].node.send_payment(&get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 40000, TEST_FINAL_CLTV, &logger).unwrap(), our_payment_hash, &Some(our_payment_secret)).unwrap();
|
|
||||||
check_added_monitors!(nodes[1], 1);
|
check_added_monitors!(nodes[1], 1);
|
||||||
|
|
||||||
let payment_event = {
|
let payment_event = {
|
||||||
|
@ -244,7 +242,6 @@ fn test_update_fee_unordered_raa() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// balancing
|
// balancing
|
||||||
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
|
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
|
||||||
|
@ -269,9 +266,8 @@ fn test_update_fee_unordered_raa() {
|
||||||
nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
|
nodes[1].node.handle_update_fee(&nodes[0].node.get_our_node_id(), update_msg.unwrap());
|
||||||
|
|
||||||
// ...but before it's delivered, nodes[1] starts to send a payment back to nodes[0]...
|
// ...but before it's delivered, nodes[1] starts to send a payment back to nodes[0]...
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[0]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 40000);
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
nodes[1].node.send_payment(&get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 40000, TEST_FINAL_CLTV, &logger).unwrap(), our_payment_hash, &Some(our_payment_secret)).unwrap();
|
|
||||||
check_added_monitors!(nodes[1], 1);
|
check_added_monitors!(nodes[1], 1);
|
||||||
|
|
||||||
let payment_event = {
|
let payment_event = {
|
||||||
|
@ -648,7 +644,6 @@ fn test_update_fee_with_fundee_update_add_htlc() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// balancing
|
// balancing
|
||||||
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
|
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
|
||||||
|
@ -673,9 +668,7 @@ fn test_update_fee_with_fundee_update_add_htlc() {
|
||||||
let (revoke_msg, commitment_signed) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
|
let (revoke_msg, commitment_signed) = get_revoke_commit_msgs!(nodes[1], nodes[0].node.get_our_node_id());
|
||||||
check_added_monitors!(nodes[1], 1);
|
check_added_monitors!(nodes[1], 1);
|
||||||
|
|
||||||
let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[0]);
|
let (route, our_payment_hash, our_payment_preimage, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 800000);
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 800000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
// nothing happens since node[1] is in AwaitingRemoteRevoke
|
// nothing happens since node[1] is in AwaitingRemoteRevoke
|
||||||
nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
|
@ -1009,13 +1002,10 @@ fn holding_cell_htlc_counting() {
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let mut payments = Vec::new();
|
let mut payments = Vec::new();
|
||||||
for _ in 0..::ln::channel::OUR_MAX_HTLCS {
|
for _ in 0..::ln::channel::OUR_MAX_HTLCS {
|
||||||
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let (route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[2], 100000);
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
||||||
payments.push((payment_preimage, payment_hash));
|
payments.push((payment_preimage, payment_hash));
|
||||||
}
|
}
|
||||||
|
@ -1029,10 +1019,8 @@ fn holding_cell_htlc_counting() {
|
||||||
// There is now one HTLC in an outbound commitment transaction and (OUR_MAX_HTLCS - 1) HTLCs in
|
// There is now one HTLC in an outbound commitment transaction and (OUR_MAX_HTLCS - 1) HTLCs in
|
||||||
// the holding cell waiting on B's RAA to send. At this point we should not be able to add
|
// the holding cell waiting on B's RAA to send. At this point we should not be able to add
|
||||||
// another HTLC.
|
// another HTLC.
|
||||||
let (_, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(nodes[2]);
|
let (route, payment_hash_1, _, payment_secret_1) = get_route_and_payment_hash!(nodes[1], nodes[2], 100000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
unwrap_send_err!(nodes[1].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)), true, APIError::ChannelUnavailable { ref err },
|
unwrap_send_err!(nodes[1].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)), true, APIError::ChannelUnavailable { ref err },
|
||||||
assert!(regex::Regex::new(r"Cannot push more than their max accepted HTLCs \(\d+\)").unwrap().is_match(err)));
|
assert!(regex::Regex::new(r"Cannot push more than their max accepted HTLCs \(\d+\)").unwrap().is_match(err)));
|
||||||
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
|
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
|
||||||
|
@ -1040,10 +1028,8 @@ fn holding_cell_htlc_counting() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// This should also be true if we try to forward a payment.
|
// This should also be true if we try to forward a payment.
|
||||||
let (_, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[2]);
|
let (route, payment_hash_2, _, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[2], 100000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
}
|
}
|
||||||
|
@ -1159,15 +1145,13 @@ fn test_duplicate_htlc_different_direction_onchain() {
|
||||||
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
|
|
||||||
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// balancing
|
// balancing
|
||||||
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
|
send_payment(&nodes[0], &vec!(&nodes[1])[..], 8000000);
|
||||||
|
|
||||||
let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 900_000);
|
let (payment_preimage, payment_hash, _) = route_payment(&nodes[0], &vec!(&nodes[1])[..], 900_000);
|
||||||
|
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[0], 800_000);
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 800_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let node_a_payment_secret = nodes[0].node.create_inbound_payment_for_hash(payment_hash, None, 7200, 0).unwrap();
|
let node_a_payment_secret = nodes[0].node.create_inbound_payment_for_hash(payment_hash, None, 7200, 0).unwrap();
|
||||||
send_along_route_with_secret(&nodes[1], route, &[&[&nodes[0]]], 800_000, payment_hash, node_a_payment_secret);
|
send_along_route_with_secret(&nodes[1], route, &[&[&nodes[0]]], 800_000, payment_hash, node_a_payment_secret);
|
||||||
|
|
||||||
|
@ -1244,17 +1228,14 @@ fn test_basic_channel_reserve() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let chan_stat = get_channel_value_stat!(nodes[0], chan.2);
|
let chan_stat = get_channel_value_stat!(nodes[0], chan.2);
|
||||||
let channel_reserve = chan_stat.channel_reserve_msat;
|
let channel_reserve = chan_stat.channel_reserve_msat;
|
||||||
|
|
||||||
// The 2* and +1 are for the fee spike reserve.
|
// The 2* and +1 are for the fee spike reserve.
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
|
||||||
let commit_tx_fee = 2 * commit_tx_fee_msat(get_feerate!(nodes[0], chan.2), 1 + 1);
|
let commit_tx_fee = 2 * commit_tx_fee_msat(get_feerate!(nodes[0], chan.2), 1 + 1);
|
||||||
let max_can_send = 5000000 - channel_reserve - commit_tx_fee;
|
let max_can_send = 5000000 - channel_reserve - commit_tx_fee;
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], max_can_send + 1);
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes.last().unwrap().node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), max_can_send + 1, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let err = nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).err().unwrap();
|
let err = nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).err().unwrap();
|
||||||
match err {
|
match err {
|
||||||
PaymentSendFailure::AllFailedRetrySafe(ref fails) => {
|
PaymentSendFailure::AllFailedRetrySafe(ref fails) => {
|
||||||
|
@ -1891,7 +1872,6 @@ fn channel_reserve_in_flight_removes() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let b_chan_values = get_channel_value_stat!(nodes[1], chan_1.2);
|
let b_chan_values = get_channel_value_stat!(nodes[1], chan_1.2);
|
||||||
// Route the first two HTLCs.
|
// Route the first two HTLCs.
|
||||||
|
@ -1899,10 +1879,8 @@ fn channel_reserve_in_flight_removes() {
|
||||||
let (payment_preimage_2, _, _) = route_payment(&nodes[0], &[&nodes[1]], 20000);
|
let (payment_preimage_2, _, _) = route_payment(&nodes[0], &[&nodes[1]], 20000);
|
||||||
|
|
||||||
// Start routing the third HTLC (this is just used to get everyone in the right state).
|
// Start routing the third HTLC (this is just used to get everyone in the right state).
|
||||||
let (payment_preimage_3, payment_hash_3, payment_secret_3) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_3, payment_preimage_3, payment_secret_3) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
|
||||||
let send_1 = {
|
let send_1 = {
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_3, &Some(payment_secret_3)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_3, &Some(payment_secret_3)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
||||||
|
@ -1972,10 +1950,8 @@ fn channel_reserve_in_flight_removes() {
|
||||||
|
|
||||||
// Now that B doesn't have the second RAA anymore, but A still does, send a payment from B back
|
// Now that B doesn't have the second RAA anymore, but A still does, send a payment from B back
|
||||||
// to A to ensure that A doesn't count the almost-removed HTLC in update_add processing.
|
// to A to ensure that A doesn't count the almost-removed HTLC in update_add processing.
|
||||||
let (payment_preimage_4, payment_hash_4, payment_secret_4) = get_payment_preimage_hash!(nodes[0]);
|
let (route, payment_hash_4, payment_preimage_4, payment_secret_4) = get_route_and_payment_hash!(nodes[1], nodes[0], 10000);
|
||||||
let send_2 = {
|
let send_2 = {
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 10000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[1].node.send_payment(&route, payment_hash_4, &Some(payment_secret_4)).unwrap();
|
nodes[1].node.send_payment(&route, payment_hash_4, &Some(payment_secret_4)).unwrap();
|
||||||
check_added_monitors!(nodes[1], 1);
|
check_added_monitors!(nodes[1], 1);
|
||||||
let mut events = nodes[1].node.get_and_clear_pending_msg_events();
|
let mut events = nodes[1].node.get_and_clear_pending_msg_events();
|
||||||
|
@ -2983,10 +2959,7 @@ fn do_test_commitment_revoked_fail_backward_exhaustive(deliver_bs_raa: bool, use
|
||||||
|
|
||||||
// Add a fourth HTLC, this one will get sequestered away in nodes[1]'s holding cell waiting
|
// Add a fourth HTLC, this one will get sequestered away in nodes[1]'s holding cell waiting
|
||||||
// on nodes[2]'s RAA.
|
// on nodes[2]'s RAA.
|
||||||
let (_, fourth_payment_hash, fourth_payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let (route, fourth_payment_hash, _, fourth_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[2], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[1].node.send_payment(&route, fourth_payment_hash, &Some(fourth_payment_secret)).unwrap();
|
nodes[1].node.send_payment(&route, fourth_payment_hash, &Some(fourth_payment_secret)).unwrap();
|
||||||
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
|
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
|
||||||
assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
|
assert!(nodes[1].node.get_and_clear_pending_events().is_empty());
|
||||||
|
@ -3133,13 +3106,10 @@ fn fail_backward_pending_htlc_upon_channel_failure() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1_000_000, 500_000_000, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1_000_000, 500_000_000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Alice -> Bob: Route a payment but without Bob sending revoke_and_ack.
|
// Alice -> Bob: Route a payment but without Bob sending revoke_and_ack.
|
||||||
{
|
{
|
||||||
let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 50_000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 50_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
@ -3153,10 +3123,8 @@ fn fail_backward_pending_htlc_upon_channel_failure() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Alice -> Bob: Route another payment but now Alice waits for Bob's earlier revoke_and_ack.
|
// Alice -> Bob: Route another payment but now Alice waits for Bob's earlier revoke_and_ack.
|
||||||
let (_, failed_payment_hash, failed_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, failed_payment_hash, _, failed_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 50_000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 50_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, failed_payment_hash, &Some(failed_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, failed_payment_hash, &Some(failed_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 0);
|
check_added_monitors!(nodes[0], 0);
|
||||||
|
|
||||||
|
@ -3165,13 +3133,11 @@ fn fail_backward_pending_htlc_upon_channel_failure() {
|
||||||
|
|
||||||
// Alice <- Bob: Send a malformed update_add_htlc so Alice fails the channel.
|
// Alice <- Bob: Send a malformed update_add_htlc so Alice fails the channel.
|
||||||
{
|
{
|
||||||
let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(nodes[0]);
|
let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 50_000);
|
||||||
|
|
||||||
let secp_ctx = Secp256k1::new();
|
let secp_ctx = Secp256k1::new();
|
||||||
let session_priv = SecretKey::from_slice(&[42; 32]).unwrap();
|
let session_priv = SecretKey::from_slice(&[42; 32]).unwrap();
|
||||||
let current_height = nodes[1].node.best_block.read().unwrap().height() + 1;
|
let current_height = nodes[1].node.best_block.read().unwrap().height() + 1;
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 50_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let (onion_payloads, _amount_msat, cltv_expiry) = onion_utils::build_onion_payloads(&route.paths[0], 50_000, &Some(payment_secret), current_height, &None).unwrap();
|
let (onion_payloads, _amount_msat, cltv_expiry) = onion_utils::build_onion_payloads(&route.paths[0], 50_000, &Some(payment_secret), current_height, &None).unwrap();
|
||||||
let onion_keys = onion_utils::construct_onion_keys(&secp_ctx, &route.paths[0], &session_priv).unwrap();
|
let onion_keys = onion_utils::construct_onion_keys(&secp_ctx, &route.paths[0], &session_priv).unwrap();
|
||||||
let onion_routing_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, [0; 32], &payment_hash);
|
let onion_routing_packet = onion_utils::construct_onion_packet(onion_payloads, onion_keys, [0; 32], &payment_hash);
|
||||||
|
@ -3248,13 +3214,10 @@ fn test_force_close_fail_back() {
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let (route, our_payment_hash, our_payment_preimage, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 1000000);
|
||||||
|
|
||||||
let mut payment_event = {
|
let mut payment_event = {
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, 42, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
@ -3307,7 +3270,7 @@ fn test_force_close_fail_back() {
|
||||||
{
|
{
|
||||||
let mut monitors = nodes[2].chain_monitor.chain_monitor.monitors.read().unwrap();
|
let mut monitors = nodes[2].chain_monitor.chain_monitor.monitors.read().unwrap();
|
||||||
monitors.get(&OutPoint{ txid: Txid::from_slice(&payment_event.commitment_msg.channel_id[..]).unwrap(), index: 0 }).unwrap()
|
monitors.get(&OutPoint{ txid: Txid::from_slice(&payment_event.commitment_msg.channel_id[..]).unwrap(), index: 0 }).unwrap()
|
||||||
.provide_payment_preimage(&our_payment_hash, &our_payment_preimage, &node_cfgs[2].tx_broadcaster, &node_cfgs[2].fee_estimator, &&logger);
|
.provide_payment_preimage(&our_payment_hash, &our_payment_preimage, &node_cfgs[2].tx_broadcaster, &node_cfgs[2].fee_estimator, &node_cfgs[2].logger);
|
||||||
}
|
}
|
||||||
mine_transaction(&nodes[2], &tx);
|
mine_transaction(&nodes[2], &tx);
|
||||||
let node_txn = nodes[2].tx_broadcaster.txn_broadcasted.lock().unwrap();
|
let node_txn = nodes[2].tx_broadcaster.txn_broadcasted.lock().unwrap();
|
||||||
|
@ -3424,14 +3387,9 @@ fn do_test_drop_messages_peer_disconnect(messages_delivered: u8, simulate_broken
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
}
|
}
|
||||||
|
|
||||||
let (payment_preimage_1, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
|
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let payment_event = {
|
let payment_event = {
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph,
|
|
||||||
&nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), Some(&nodes[0].node.list_usable_channels().iter().collect::<Vec<_>>()),
|
|
||||||
&Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
@ -3625,10 +3583,7 @@ fn do_test_drop_messages_peer_disconnect(messages_delivered: u8, simulate_broken
|
||||||
reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
|
reconnect_nodes(&nodes[0], &nodes[1], (false, false), (0, 0), (0, 0), (0, 0), (0, 0), (0, 0), (false, false));
|
||||||
|
|
||||||
// Channel should still work fine...
|
// Channel should still work fine...
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph,
|
|
||||||
&nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), Some(&nodes[0].node.list_usable_channels().iter().collect::<Vec<_>>()),
|
|
||||||
&Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let payment_preimage_2 = send_along_route(&nodes[0], route, &[&nodes[1]], 1000000).0;
|
let payment_preimage_2 = send_along_route(&nodes[0], route, &[&nodes[1]], 1000000).0;
|
||||||
claim_payment(&nodes[0], &[&nodes[1]], payment_preimage_2);
|
claim_payment(&nodes[0], &[&nodes[1]], payment_preimage_2);
|
||||||
}
|
}
|
||||||
|
@ -3731,9 +3686,7 @@ fn test_funding_peer_disconnect() {
|
||||||
nodes[0].net_graph_msg_handler.handle_channel_update(&bs_update).unwrap();
|
nodes[0].net_graph_msg_handler.handle_channel_update(&bs_update).unwrap();
|
||||||
nodes[0].net_graph_msg_handler.handle_channel_update(&as_update).unwrap();
|
nodes[0].net_graph_msg_handler.handle_channel_update(&as_update).unwrap();
|
||||||
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let (payment_preimage, _, _) = send_along_route(&nodes[0], route, &[&nodes[1]], 1000000);
|
let (payment_preimage, _, _) = send_along_route(&nodes[0], route, &[&nodes[1]], 1000000);
|
||||||
claim_payment(&nodes[0], &[&nodes[1]], payment_preimage);
|
claim_payment(&nodes[0], &[&nodes[1]], payment_preimage);
|
||||||
|
|
||||||
|
@ -3802,14 +3755,11 @@ fn test_drop_messages_peer_disconnect_dual_htlc() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
|
let (payment_preimage_1, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[1]], 1000000);
|
||||||
|
|
||||||
// Now try to send a second payment which will fail to send
|
// Now try to send a second payment which will fail to send
|
||||||
let (payment_preimage_2, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash_2, payment_preimage_2, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_2, &Some(payment_secret_2)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
@ -3953,12 +3903,9 @@ fn do_test_htlc_timeout(send_partial_mpp: bool) {
|
||||||
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
|
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let our_payment_hash = if send_partial_mpp {
|
let our_payment_hash = if send_partial_mpp {
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
let (route, our_payment_hash, _, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[1], 100000);
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let (_, our_payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[1]);
|
|
||||||
// Use the utility function send_payment_along_path to send the payment with MPP data which
|
// Use the utility function send_payment_along_path to send the payment with MPP data which
|
||||||
// indicates there are more HTLCs coming.
|
// indicates there are more HTLCs coming.
|
||||||
let cur_height = CHAN_CONFIRM_DEPTH + 1; // route_payment calls send_payment, which adds 1 to the current height. So we do the same here to match.
|
let cur_height = CHAN_CONFIRM_DEPTH + 1; // route_payment calls send_payment, which adds 1 to the current height. So we do the same here to match.
|
||||||
|
@ -4025,36 +3972,26 @@ fn do_test_holding_cell_htlc_add_timeouts(forwarded_htlc: bool) {
|
||||||
connect_blocks(&nodes[1], 2*CHAN_CONFIRM_DEPTH + 1 - nodes[1].best_block_info().1);
|
connect_blocks(&nodes[1], 2*CHAN_CONFIRM_DEPTH + 1 - nodes[1].best_block_info().1);
|
||||||
connect_blocks(&nodes[2], 2*CHAN_CONFIRM_DEPTH + 1 - nodes[2].best_block_info().1);
|
connect_blocks(&nodes[2], 2*CHAN_CONFIRM_DEPTH + 1 - nodes[2].best_block_info().1);
|
||||||
|
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// Route a first payment to get the 1 -> 2 channel in awaiting_raa...
|
// Route a first payment to get the 1 -> 2 channel in awaiting_raa...
|
||||||
let (_, first_payment_hash, first_payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let (route, first_payment_hash, _, first_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[2], 100000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[1].node.send_payment(&route, first_payment_hash, &Some(first_payment_secret)).unwrap();
|
nodes[1].node.send_payment(&route, first_payment_hash, &Some(first_payment_secret)).unwrap();
|
||||||
}
|
}
|
||||||
assert_eq!(nodes[1].node.get_and_clear_pending_msg_events().len(), 1);
|
assert_eq!(nodes[1].node.get_and_clear_pending_msg_events().len(), 1);
|
||||||
check_added_monitors!(nodes[1], 1);
|
check_added_monitors!(nodes[1], 1);
|
||||||
|
|
||||||
// Now attempt to route a second payment, which should be placed in the holding cell
|
// Now attempt to route a second payment, which should be placed in the holding cell
|
||||||
let (_, second_payment_hash, second_payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let sending_node = if forwarded_htlc { &nodes[0] } else { &nodes[1] };
|
||||||
|
let (route, second_payment_hash, _, second_payment_secret) = get_route_and_payment_hash!(sending_node, nodes[2], 100000);
|
||||||
|
sending_node.node.send_payment(&route, second_payment_hash, &Some(second_payment_secret)).unwrap();
|
||||||
if forwarded_htlc {
|
if forwarded_htlc {
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, second_payment_hash, &Some(first_payment_secret)).unwrap();
|
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let payment_event = SendEvent::from_event(nodes[0].node.get_and_clear_pending_msg_events().remove(0));
|
let payment_event = SendEvent::from_event(nodes[0].node.get_and_clear_pending_msg_events().remove(0));
|
||||||
nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
|
nodes[1].node.handle_update_add_htlc(&nodes[0].node.get_our_node_id(), &payment_event.msgs[0]);
|
||||||
commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
|
commitment_signed_dance!(nodes[1], nodes[0], payment_event.commitment_msg, false);
|
||||||
expect_pending_htlcs_forwardable!(nodes[1]);
|
expect_pending_htlcs_forwardable!(nodes[1]);
|
||||||
check_added_monitors!(nodes[1], 0);
|
|
||||||
} else {
|
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[1].node.send_payment(&route, second_payment_hash, &Some(second_payment_secret)).unwrap();
|
|
||||||
check_added_monitors!(nodes[1], 0);
|
|
||||||
}
|
}
|
||||||
|
check_added_monitors!(nodes[1], 0);
|
||||||
|
|
||||||
connect_blocks(&nodes[1], TEST_FINAL_CLTV - CLTV_CLAIM_BUFFER - LATENCY_GRACE_PERIOD_BLOCKS);
|
connect_blocks(&nodes[1], TEST_FINAL_CLTV - CLTV_CLAIM_BUFFER - LATENCY_GRACE_PERIOD_BLOCKS);
|
||||||
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
|
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
|
||||||
|
@ -4171,11 +4108,8 @@ fn mpp_failure() {
|
||||||
let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, 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_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, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[3]);
|
let (mut route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
|
||||||
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, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let path = route.paths[0].clone();
|
let path = route.paths[0].clone();
|
||||||
route.paths.push(path);
|
route.paths.push(path);
|
||||||
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
||||||
|
@ -5158,8 +5092,7 @@ fn test_duplicate_payment_hash_one_failure_one_success() {
|
||||||
// We reduce the final CLTV here by a somewhat arbitrary constant to keep it under the one-byte
|
// We reduce the final CLTV here by a somewhat arbitrary constant to keep it under the one-byte
|
||||||
// script push size limit so that the below script length checks match
|
// script push size limit so that the below script length checks match
|
||||||
// ACCEPTED_HTLC_SCRIPT_WEIGHT.
|
// ACCEPTED_HTLC_SCRIPT_WEIGHT.
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &nodes[0].net_graph_msg_handler.network_graph,
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[3], vec![], 900000, TEST_FINAL_CLTV - 40);
|
||||||
&nodes[3].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 900000, TEST_FINAL_CLTV - 40, nodes[0].logger).unwrap();
|
|
||||||
send_along_route_with_secret(&nodes[0], route, &[&[&nodes[1], &nodes[2], &nodes[3]]], 900000, duplicate_payment_hash, payment_secret);
|
send_along_route_with_secret(&nodes[0], route, &[&[&nodes[1], &nodes[2], &nodes[3]]], 900000, duplicate_payment_hash, payment_secret);
|
||||||
|
|
||||||
let commitment_txn = get_local_commitment_txn!(nodes[2], chan_2.2);
|
let commitment_txn = get_local_commitment_txn!(nodes[2], chan_2.2);
|
||||||
|
@ -5339,7 +5272,6 @@ fn do_test_fail_backwards_unrevoked_remote_announce(deliver_last_raa: bool, anno
|
||||||
let node_chanmgrs = create_node_chanmgrs(6, &node_cfgs,
|
let node_chanmgrs = create_node_chanmgrs(6, &node_cfgs,
|
||||||
&[Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone())]);
|
&[Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone()), Some(config.clone())]);
|
||||||
let nodes = create_network(6, &node_cfgs, &node_chanmgrs);
|
let nodes = create_network(6, &node_cfgs, &node_chanmgrs);
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
|
@ -5357,9 +5289,7 @@ fn do_test_fail_backwards_unrevoked_remote_announce(deliver_last_raa: bool, anno
|
||||||
let (_, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
|
let (_, payment_hash_1, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
|
||||||
// 1st HTLC:
|
// 1st HTLC:
|
||||||
let (_, payment_hash_2, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
|
let (_, payment_hash_2, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[5], ds_dust_limit*1000);
|
||||||
let our_node_id = &nodes[1].node.get_our_node_id();
|
|
||||||
let route = get_route(our_node_id, &net_graph_msg_handler.network_graph, &nodes[5].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), ds_dust_limit*1000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
// 2nd HTLC:
|
// 2nd HTLC:
|
||||||
send_along_route_with_secret(&nodes[1], route.clone(), &[&[&nodes[2], &nodes[3], &nodes[5]]], ds_dust_limit*1000, payment_hash_1, nodes[5].node.create_inbound_payment_for_hash(payment_hash_1, None, 7200, 0).unwrap()); // not added < dust limit + HTLC tx fee
|
send_along_route_with_secret(&nodes[1], route.clone(), &[&[&nodes[2], &nodes[3], &nodes[5]]], ds_dust_limit*1000, payment_hash_1, nodes[5].node.create_inbound_payment_for_hash(payment_hash_1, None, 7200, 0).unwrap()); // not added < dust limit + HTLC tx fee
|
||||||
// 3rd HTLC:
|
// 3rd HTLC:
|
||||||
|
@ -5368,7 +5298,7 @@ fn do_test_fail_backwards_unrevoked_remote_announce(deliver_last_raa: bool, anno
|
||||||
let (_, payment_hash_3, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
|
let (_, payment_hash_3, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
|
||||||
// 5th HTLC:
|
// 5th HTLC:
|
||||||
let (_, payment_hash_4, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
|
let (_, payment_hash_4, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
|
||||||
let route = get_route(our_node_id, &net_graph_msg_handler.network_graph, &nodes[5].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[5], 1000000);
|
||||||
// 6th HTLC:
|
// 6th HTLC:
|
||||||
send_along_route_with_secret(&nodes[1], route.clone(), &[&[&nodes[2], &nodes[3], &nodes[5]]], 1000000, payment_hash_3, nodes[5].node.create_inbound_payment_for_hash(payment_hash_3, None, 7200, 0).unwrap());
|
send_along_route_with_secret(&nodes[1], route.clone(), &[&[&nodes[2], &nodes[3], &nodes[5]]], 1000000, payment_hash_3, nodes[5].node.create_inbound_payment_for_hash(payment_hash_3, None, 7200, 0).unwrap());
|
||||||
// 7th HTLC:
|
// 7th HTLC:
|
||||||
|
@ -5377,13 +5307,13 @@ fn do_test_fail_backwards_unrevoked_remote_announce(deliver_last_raa: bool, anno
|
||||||
// 8th HTLC:
|
// 8th HTLC:
|
||||||
let (_, payment_hash_5, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
|
let (_, payment_hash_5, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], 1000000);
|
||||||
// 9th HTLC:
|
// 9th HTLC:
|
||||||
let route = get_route(our_node_id, &net_graph_msg_handler.network_graph, &nodes[5].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), ds_dust_limit*1000, TEST_FINAL_CLTV, &logger).unwrap();
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[5], ds_dust_limit*1000);
|
||||||
send_along_route_with_secret(&nodes[1], route, &[&[&nodes[2], &nodes[3], &nodes[5]]], ds_dust_limit*1000, payment_hash_5, nodes[5].node.create_inbound_payment_for_hash(payment_hash_5, None, 7200, 0).unwrap()); // not added < dust limit + HTLC tx fee
|
send_along_route_with_secret(&nodes[1], route, &[&[&nodes[2], &nodes[3], &nodes[5]]], ds_dust_limit*1000, payment_hash_5, nodes[5].node.create_inbound_payment_for_hash(payment_hash_5, None, 7200, 0).unwrap()); // not added < dust limit + HTLC tx fee
|
||||||
|
|
||||||
// 10th HTLC:
|
// 10th HTLC:
|
||||||
let (_, payment_hash_6, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
|
let (_, payment_hash_6, _) = route_payment(&nodes[0], &[&nodes[2], &nodes[3], &nodes[4]], ds_dust_limit*1000); // not added < dust limit + HTLC tx fee
|
||||||
// 11th HTLC:
|
// 11th HTLC:
|
||||||
let route = get_route(our_node_id, &net_graph_msg_handler.network_graph, &nodes[5].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[1], nodes[5], 1000000);
|
||||||
send_along_route_with_secret(&nodes[1], route, &[&[&nodes[2], &nodes[3], &nodes[5]]], 1000000, payment_hash_6, nodes[5].node.create_inbound_payment_for_hash(payment_hash_6, None, 7200, 0).unwrap());
|
send_along_route_with_secret(&nodes[1], route, &[&[&nodes[2], &nodes[3], &nodes[5]]], 1000000, payment_hash_6, nodes[5].node.create_inbound_payment_for_hash(payment_hash_6, None, 7200, 0).unwrap());
|
||||||
|
|
||||||
// Double-check that six of the new HTLC were added
|
// Double-check that six of the new HTLC were added
|
||||||
|
@ -5806,11 +5736,8 @@ fn do_htlc_claim_current_remote_commitment_only(use_dust: bool) {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], if use_dust { 50000 } else { 3000000 });
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), if use_dust { 50000 } else { 3000000 }, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
@ -6017,7 +5944,6 @@ fn test_fail_holding_cell_htlc_upon_free() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// First nodes[0] generates an update_fee, setting the channel's
|
// First nodes[0] generates an update_fee, setting the channel's
|
||||||
// pending_update_fee.
|
// pending_update_fee.
|
||||||
|
@ -6044,10 +5970,8 @@ fn test_fail_holding_cell_htlc_upon_free() {
|
||||||
let feerate = get_feerate!(nodes[0], chan.2);
|
let feerate = get_feerate!(nodes[0], chan.2);
|
||||||
|
|
||||||
// 2* and +1 HTLCs on the commit tx fee calculation for the fee spike reserve.
|
// 2* and +1 HTLCs on the commit tx fee calculation for the fee spike reserve.
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
|
||||||
let max_can_send = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 1 + 1);
|
let max_can_send = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 1 + 1);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], max_can_send);
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], max_can_send, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
// Send a payment which passes reserve checks but gets stuck in the holding cell.
|
// Send a payment which passes reserve checks but gets stuck in the holding cell.
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
|
@ -6098,7 +6022,6 @@ fn test_free_and_fail_holding_cell_htlcs() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// First nodes[0] generates an update_fee, setting the channel's
|
// First nodes[0] generates an update_fee, setting the channel's
|
||||||
// pending_update_fee.
|
// pending_update_fee.
|
||||||
|
@ -6125,13 +6048,10 @@ fn test_free_and_fail_holding_cell_htlcs() {
|
||||||
let feerate = get_feerate!(nodes[0], chan.2);
|
let feerate = get_feerate!(nodes[0], chan.2);
|
||||||
|
|
||||||
// 2* and +1 HTLCs on the commit tx fee calculation for the fee spike reserve.
|
// 2* and +1 HTLCs on the commit tx fee calculation for the fee spike reserve.
|
||||||
let (payment_preimage_1, payment_hash_1, payment_secret_1) = get_payment_preimage_hash!(nodes[1]);
|
|
||||||
let amt_1 = 20000;
|
let amt_1 = 20000;
|
||||||
let (_, payment_hash_2, payment_secret_2) = get_payment_preimage_hash!(nodes[1]);
|
|
||||||
let amt_2 = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 2 + 1) - amt_1;
|
let amt_2 = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 2 + 1) - amt_1;
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
let (route_1, payment_hash_1, payment_preimage_1, payment_secret_1) = get_route_and_payment_hash!(nodes[0], nodes[1], amt_1);
|
||||||
let route_1 = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], amt_1, TEST_FINAL_CLTV, &logger).unwrap();
|
let (route_2, payment_hash_2, _, payment_secret_2) = get_route_and_payment_hash!(nodes[0], nodes[1], amt_2);
|
||||||
let route_2 = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], amt_2, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
// Send 2 payments which pass reserve checks but get stuck in the holding cell.
|
// Send 2 payments which pass reserve checks but get stuck in the holding cell.
|
||||||
nodes[0].node.send_payment(&route_1, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
nodes[0].node.send_payment(&route_1, payment_hash_1, &Some(payment_secret_1)).unwrap();
|
||||||
|
@ -6234,7 +6154,6 @@ fn test_fail_holding_cell_htlc_upon_free_multihop() {
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
let chan_0_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let chan_0_1 = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let chan_1_2 = create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let chan_1_2 = create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
// First nodes[1] generates an update_fee, setting the channel's
|
// First nodes[1] generates an update_fee, setting the channel's
|
||||||
// pending_update_fee.
|
// pending_update_fee.
|
||||||
|
@ -6263,11 +6182,9 @@ fn test_fail_holding_cell_htlc_upon_free_multihop() {
|
||||||
// Send a payment which passes reserve checks but gets stuck in the holding cell.
|
// Send a payment which passes reserve checks but gets stuck in the holding cell.
|
||||||
let feemsat = 239;
|
let feemsat = 239;
|
||||||
let total_routing_fee_msat = (nodes.len() - 2) as u64 * feemsat;
|
let total_routing_fee_msat = (nodes.len() - 2) as u64 * feemsat;
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
|
||||||
let max_can_send = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 1 + 1) - total_routing_fee_msat;
|
let max_can_send = 5000000 - channel_reserve - 2*commit_tx_fee_msat(feerate, 1 + 1) - total_routing_fee_msat;
|
||||||
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], max_can_send);
|
||||||
let payment_event = {
|
let payment_event = {
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], max_can_send, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
@ -6367,10 +6284,7 @@ fn test_update_add_htlc_bolt2_sender_value_below_minimum_msat() {
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (mut route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let mut route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
route.paths[0][0].fee_msat = 100;
|
route.paths[0][0].fee_msat = 100;
|
||||||
|
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
|
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
|
||||||
|
@ -6387,11 +6301,8 @@ fn test_update_add_htlc_bolt2_sender_zero_value_msat() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
|
||||||
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
let (mut route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let mut route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
route.paths[0][0].fee_msat = 0;
|
route.paths[0][0].fee_msat = 0;
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
|
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
|
||||||
assert_eq!(err, "Cannot send 0-msat HTLC"));
|
assert_eq!(err, "Cannot send 0-msat HTLC"));
|
||||||
|
@ -6409,10 +6320,7 @@ fn test_update_add_htlc_bolt2_receiver_zero_value_msat() {
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
@ -6434,12 +6342,8 @@ fn test_update_add_htlc_bolt2_sender_cltv_expiry_too_high() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 0, InitFeatures::known(), InitFeatures::known());
|
let _chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 0, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], vec![], 100000000, 500000001);
|
||||||
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000000, 500000001, &logger).unwrap();
|
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::RouteError { ref err },
|
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::RouteError { ref err },
|
||||||
assert_eq!(err, &"Channel CLTV overflowed?"));
|
assert_eq!(err, &"Channel CLTV overflowed?"));
|
||||||
}
|
}
|
||||||
|
@ -6456,12 +6360,9 @@ fn test_update_add_htlc_bolt2_sender_exceed_max_htlc_num_and_htlc_id_increment()
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 0, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 0, InitFeatures::known(), InitFeatures::known());
|
||||||
let max_accepted_htlcs = nodes[1].node.channel_state.lock().unwrap().by_id.get(&chan.2).unwrap().counterparty_max_accepted_htlcs as u64;
|
let max_accepted_htlcs = nodes[1].node.channel_state.lock().unwrap().by_id.get(&chan.2).unwrap().counterparty_max_accepted_htlcs as u64;
|
||||||
|
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
for i in 0..max_accepted_htlcs {
|
for i in 0..max_accepted_htlcs {
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
|
||||||
let payment_event = {
|
let payment_event = {
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
@ -6481,9 +6382,7 @@ fn test_update_add_htlc_bolt2_sender_exceed_max_htlc_num_and_htlc_id_increment()
|
||||||
expect_pending_htlcs_forwardable!(nodes[1]);
|
expect_pending_htlcs_forwardable!(nodes[1]);
|
||||||
expect_payment_received!(nodes[1], our_payment_hash, our_payment_secret, 100000);
|
expect_payment_received!(nodes[1], our_payment_hash, our_payment_secret, 100000);
|
||||||
}
|
}
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 100000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
|
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
|
||||||
assert!(regex::Regex::new(r"Cannot push more than their max accepted HTLCs \(\d+\)").unwrap().is_match(err)));
|
assert!(regex::Regex::new(r"Cannot push more than their max accepted HTLCs \(\d+\)").unwrap().is_match(err)));
|
||||||
|
|
||||||
|
@ -6504,14 +6403,10 @@ fn test_update_add_htlc_bolt2_sender_exceed_max_htlc_value_in_flight() {
|
||||||
|
|
||||||
send_payment(&nodes[0], &vec!(&nodes[1])[..], max_in_flight);
|
send_payment(&nodes[0], &vec!(&nodes[1])[..], max_in_flight);
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (mut route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], max_in_flight);
|
||||||
// Manually create a route over our max in flight (which our router normally automatically
|
// Manually create a route over our max in flight (which our router normally automatically
|
||||||
// limits us to.
|
// limits us to.
|
||||||
let route = Route { paths: vec![vec![RouteHop {
|
route.paths[0][0].fee_msat = max_in_flight + 1;
|
||||||
pubkey: nodes[1].node.get_our_node_id(), node_features: NodeFeatures::known(), channel_features: ChannelFeatures::known(),
|
|
||||||
short_channel_id: nodes[1].node.list_usable_channels()[0].short_channel_id.unwrap(),
|
|
||||||
fee_msat: max_in_flight + 1, cltv_expiry_delta: TEST_FINAL_CLTV
|
|
||||||
}]] };
|
|
||||||
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
|
unwrap_send_err!(nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
|
||||||
assert!(regex::Regex::new(r"Cannot send value that would put us over the max HTLC value in flight our peer will accept \(\d+\)").unwrap().is_match(err)));
|
assert!(regex::Regex::new(r"Cannot send value that would put us over the max HTLC value in flight our peer will accept \(\d+\)").unwrap().is_match(err)));
|
||||||
|
|
||||||
|
@ -6537,10 +6432,7 @@ fn test_update_add_htlc_bolt2_receiver_check_amount_received_more_than_min() {
|
||||||
htlc_minimum_msat = channel.get_holder_htlc_minimum_msat();
|
htlc_minimum_msat = channel.get_holder_htlc_minimum_msat();
|
||||||
}
|
}
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], htlc_minimum_msat);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], htlc_minimum_msat, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
@ -6561,7 +6453,6 @@ fn test_update_add_htlc_bolt2_receiver_sender_can_afford_amount_sent() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let chan_stat = get_channel_value_stat!(nodes[0], chan.2);
|
let chan_stat = get_channel_value_stat!(nodes[0], chan.2);
|
||||||
let channel_reserve = chan_stat.channel_reserve_msat;
|
let channel_reserve = chan_stat.channel_reserve_msat;
|
||||||
|
@ -6570,9 +6461,7 @@ fn test_update_add_htlc_bolt2_receiver_sender_can_afford_amount_sent() {
|
||||||
let commit_tx_fee_outbound = 2 * commit_tx_fee_msat(feerate, 1 + 1);
|
let commit_tx_fee_outbound = 2 * commit_tx_fee_msat(feerate, 1 + 1);
|
||||||
|
|
||||||
let max_can_send = 5000000 - channel_reserve - commit_tx_fee_outbound;
|
let max_can_send = 5000000 - channel_reserve - commit_tx_fee_outbound;
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], max_can_send);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], max_can_send, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
@ -6599,14 +6488,9 @@ fn test_update_add_htlc_bolt2_receiver_check_max_htlc_limit() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 3999999);
|
||||||
let session_priv = SecretKey::from_slice(&[42; 32]).unwrap();
|
let session_priv = SecretKey::from_slice(&[42; 32]).unwrap();
|
||||||
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 3999999, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
let cur_height = nodes[0].node.best_block.read().unwrap().height() + 1;
|
let cur_height = nodes[0].node.best_block.read().unwrap().height() + 1;
|
||||||
let onion_keys = onion_utils::construct_onion_keys(&Secp256k1::signing_only(), &route.paths[0], &session_priv).unwrap();
|
let onion_keys = onion_utils::construct_onion_keys(&Secp256k1::signing_only(), &route.paths[0], &session_priv).unwrap();
|
||||||
let (onion_payloads, _htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(&route.paths[0], 3999999, &Some(our_payment_secret), cur_height, &None).unwrap();
|
let (onion_payloads, _htlc_msat, htlc_cltv) = onion_utils::build_onion_payloads(&route.paths[0], 3999999, &Some(our_payment_secret), cur_height, &None).unwrap();
|
||||||
|
@ -6643,11 +6527,8 @@ fn test_update_add_htlc_bolt2_receiver_check_max_in_flight_msat() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
@ -6668,12 +6549,9 @@ fn test_update_add_htlc_bolt2_receiver_check_cltv_expiry() {
|
||||||
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
|
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, 95000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let mut updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
@ -6696,12 +6574,9 @@ fn test_update_add_htlc_bolt2_receiver_check_repeated_id_ignore() {
|
||||||
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
|
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
@ -6745,11 +6620,8 @@ fn test_update_fulfill_htlc_bolt2_update_fulfill_htlc_before_commitment() {
|
||||||
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
|
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, our_payment_preimage, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
|
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
@ -6780,11 +6652,8 @@ fn test_update_fulfill_htlc_bolt2_update_fail_htlc_before_commitment() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
@ -6814,11 +6683,8 @@ fn test_update_fulfill_htlc_bolt2_update_fail_malformed_htlc_before_commitment()
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
@ -6932,11 +6798,8 @@ fn test_update_fulfill_htlc_bolt2_missing_badonion_bit_for_malformed_htlc_messag
|
||||||
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
|
||||||
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[1]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[1], 1000000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 1000000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
|
||||||
|
@ -6983,14 +6846,11 @@ fn test_update_fulfill_htlc_bolt2_after_malformed_htlc_message_must_forward_upda
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
|
||||||
create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
|
create_announced_chan_between_nodes_with_value(&nodes, 1, 2, 1000000, 1000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 100000);
|
||||||
|
|
||||||
//First hop
|
//First hop
|
||||||
let mut payment_event = {
|
let mut payment_event = {
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
||||||
|
@ -7608,18 +7468,16 @@ fn test_priv_forwarding_rejection() {
|
||||||
|
|
||||||
// ... however, if we send to nodes[2], we will have to pass the private channel from nodes[1]
|
// ... however, if we send to nodes[2], we will have to pass the private channel from nodes[1]
|
||||||
// to nodes[2], which should be rejected:
|
// to nodes[2], which should be rejected:
|
||||||
let (our_payment_preimage, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let route_hint = RouteHint(vec![RouteHintHop {
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(),
|
src_node_id: nodes[1].node.get_our_node_id(),
|
||||||
&nodes[0].net_graph_msg_handler.network_graph,
|
short_channel_id: nodes[2].node.list_channels()[0].short_channel_id.unwrap(),
|
||||||
&nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None,
|
fees: RoutingFees { base_msat: 1000, proportional_millionths: 0 },
|
||||||
&[&RouteHint(vec![RouteHintHop {
|
cltv_expiry_delta: MIN_CLTV_EXPIRY_DELTA,
|
||||||
src_node_id: nodes[1].node.get_our_node_id(),
|
htlc_minimum_msat: None,
|
||||||
short_channel_id: nodes[2].node.list_channels()[0].short_channel_id.unwrap(),
|
htlc_maximum_msat: None,
|
||||||
fees: RoutingFees { base_msat: 1000, proportional_millionths: 0 },
|
}]);
|
||||||
cltv_expiry_delta: MIN_CLTV_EXPIRY_DELTA,
|
let last_hops = vec![&route_hint];
|
||||||
htlc_minimum_msat: None,
|
let (route, our_payment_hash, our_payment_preimage, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], last_hops, 10_000, TEST_FINAL_CLTV);
|
||||||
htlc_maximum_msat: None,
|
|
||||||
}])], 10_000, TEST_FINAL_CLTV, nodes[0].logger).unwrap();
|
|
||||||
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
|
@ -7725,11 +7583,9 @@ fn test_bump_penalty_txn_on_revoked_commitment() {
|
||||||
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
let nodes = create_network(2, &node_cfgs, &node_chanmgrs);
|
||||||
|
|
||||||
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
|
let chan = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 1000000, 59000000, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let payment_preimage = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
|
let payment_preimage = route_payment(&nodes[0], &vec!(&nodes[1])[..], 3000000).0;
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
let (route,_, _, _) = get_route_and_payment_hash!(nodes[1], nodes[0], vec![], 3000000, 30);
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 3000000, 30, &logger).unwrap();
|
|
||||||
send_along_route(&nodes[1], route, &vec!(&nodes[0])[..], 3000000);
|
send_along_route(&nodes[1], route, &vec!(&nodes[0])[..], 3000000);
|
||||||
|
|
||||||
let revoked_txn = get_local_commitment_txn!(nodes[0], chan.2);
|
let revoked_txn = get_local_commitment_txn!(nodes[0], chan.2);
|
||||||
|
@ -8230,11 +8086,8 @@ fn test_simple_mpp() {
|
||||||
let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, 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_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, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
let chan_4_id = create_announced_chan_between_nodes(&nodes, 2, 3, InitFeatures::known(), InitFeatures::known()).0.contents.short_channel_id;
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[3]);
|
let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(&nodes[0], nodes[3], 100000);
|
||||||
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, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
let path = route.paths[0].clone();
|
let path = route.paths[0].clone();
|
||||||
route.paths.push(path);
|
route.paths.push(path);
|
||||||
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
||||||
|
@ -8259,10 +8112,7 @@ fn test_preimage_storage() {
|
||||||
|
|
||||||
{
|
{
|
||||||
let (payment_hash, payment_secret) = nodes[1].node.create_inbound_payment(Some(100_000), 7200, 42);
|
let (payment_hash, payment_secret) = nodes[1].node.create_inbound_payment(Some(100_000), 7200, 42);
|
||||||
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
||||||
|
@ -8331,9 +8181,7 @@ fn test_secret_timeout() {
|
||||||
assert_ne!(payment_secret_1, our_payment_secret);
|
assert_ne!(payment_secret_1, our_payment_secret);
|
||||||
|
|
||||||
{
|
{
|
||||||
let logger = test_utils::TestLogger::new();
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
let mut events = nodes[0].node.get_and_clear_pending_msg_events();
|
||||||
|
@ -8370,10 +8218,7 @@ fn test_bad_secret_hash() {
|
||||||
let random_payment_hash = PaymentHash([42; 32]);
|
let random_payment_hash = PaymentHash([42; 32]);
|
||||||
let random_payment_secret = PaymentSecret([43; 32]);
|
let random_payment_secret = PaymentSecret([43; 32]);
|
||||||
let (our_payment_hash, our_payment_secret) = nodes[1].node.create_inbound_payment(Some(100_000), 2, 0);
|
let (our_payment_hash, our_payment_secret) = nodes[1].node.create_inbound_payment(Some(100_000), 2, 0);
|
||||||
|
let (route, _, _, _) = get_route_and_payment_hash!(nodes[0], nodes[1], 100_000);
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[1].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
// All the below cases should end up being handled exactly identically, so we macro the
|
// All the below cases should end up being handled exactly identically, so we macro the
|
||||||
// resulting events.
|
// resulting events.
|
||||||
|
@ -8559,10 +8404,8 @@ fn test_concurrent_monitor_claim() {
|
||||||
watchtower_bob.chain_monitor.block_connected(&Block { header, txdata: vec![] }, CHAN_CONFIRM_DEPTH + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
|
watchtower_bob.chain_monitor.block_connected(&Block { header, txdata: vec![] }, CHAN_CONFIRM_DEPTH + TEST_FINAL_CLTV + LATENCY_GRACE_PERIOD_BLOCKS);
|
||||||
|
|
||||||
// Route another payment to generate another update with still previous HTLC pending
|
// Route another payment to generate another update with still previous HTLC pending
|
||||||
let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(nodes[0]);
|
let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 3000000);
|
||||||
{
|
{
|
||||||
let net_graph_msg_handler = &nodes[1].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[1].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[0].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 3000000 , TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
nodes[1].node.send_payment(&route, payment_hash, &Some(payment_secret)).unwrap();
|
||||||
}
|
}
|
||||||
check_added_monitors!(nodes[1], 1);
|
check_added_monitors!(nodes[1], 1);
|
||||||
|
@ -9348,9 +9191,9 @@ fn test_keysend_payments_to_public_node() {
|
||||||
let network_graph = &nodes[0].net_graph_msg_handler.network_graph;
|
let network_graph = &nodes[0].net_graph_msg_handler.network_graph;
|
||||||
let payer_pubkey = nodes[0].node.get_our_node_id();
|
let payer_pubkey = nodes[0].node.get_our_node_id();
|
||||||
let payee_pubkey = nodes[1].node.get_our_node_id();
|
let payee_pubkey = nodes[1].node.get_our_node_id();
|
||||||
let route = get_route(&payer_pubkey, network_graph, &payee_pubkey, None,
|
let route = get_keysend_route(
|
||||||
None, &vec![], 10000, 40,
|
&payer_pubkey, &network_graph, &payee_pubkey, None, &vec![], 10000, 40, nodes[0].logger
|
||||||
nodes[0].logger).unwrap();
|
).unwrap();
|
||||||
|
|
||||||
let test_preimage = PaymentPreimage([42; 32]);
|
let test_preimage = PaymentPreimage([42; 32]);
|
||||||
let (payment_hash, _) = nodes[0].node.send_spontaneous_payment(&route, Some(test_preimage)).unwrap();
|
let (payment_hash, _) = nodes[0].node.send_spontaneous_payment(&route, Some(test_preimage)).unwrap();
|
||||||
|
@ -9378,9 +9221,10 @@ fn test_keysend_payments_to_private_node() {
|
||||||
let _chan = create_chan_between_nodes(&nodes[0], &nodes[1], InitFeatures::known(), InitFeatures::known());
|
let _chan = create_chan_between_nodes(&nodes[0], &nodes[1], InitFeatures::known(), InitFeatures::known());
|
||||||
let network_graph = &nodes[0].net_graph_msg_handler.network_graph;
|
let network_graph = &nodes[0].net_graph_msg_handler.network_graph;
|
||||||
let first_hops = nodes[0].node.list_usable_channels();
|
let first_hops = nodes[0].node.list_usable_channels();
|
||||||
let route = get_keysend_route(&payer_pubkey, &network_graph, &payee_pubkey,
|
let route = get_keysend_route(
|
||||||
Some(&first_hops.iter().collect::<Vec<_>>()), &vec![], 10000, 40,
|
&payer_pubkey, &network_graph, &payee_pubkey, Some(&first_hops.iter().collect::<Vec<_>>()),
|
||||||
nodes[0].logger).unwrap();
|
&vec![], 10000, 40, nodes[0].logger
|
||||||
|
).unwrap();
|
||||||
|
|
||||||
let test_preimage = PaymentPreimage([42; 32]);
|
let test_preimage = PaymentPreimage([42; 32]);
|
||||||
let (payment_hash, _) = nodes[0].node.send_spontaneous_payment(&route, Some(test_preimage)).unwrap();
|
let (payment_hash, _) = nodes[0].node.send_spontaneous_payment(&route, Some(test_preimage)).unwrap();
|
||||||
|
|
|
@ -17,7 +17,6 @@ use ln::features::InitFeatures;
|
||||||
use ln::msgs::{ChannelMessageHandler, ErrorAction};
|
use ln::msgs::{ChannelMessageHandler, ErrorAction};
|
||||||
use util::events::{Event, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
|
use util::events::{Event, MessageSendEvent, MessageSendEventsProvider, ClosureReason};
|
||||||
use routing::network_graph::NetworkUpdate;
|
use routing::network_graph::NetworkUpdate;
|
||||||
use routing::router::get_route;
|
|
||||||
|
|
||||||
use bitcoin::hashes::sha256::Hash as Sha256;
|
use bitcoin::hashes::sha256::Hash as Sha256;
|
||||||
use bitcoin::hashes::Hash;
|
use bitcoin::hashes::Hash;
|
||||||
|
|
|
@ -15,12 +15,11 @@ use chain::channelmonitor::{CLTV_CLAIM_BUFFER, LATENCY_GRACE_PERIOD_BLOCKS};
|
||||||
use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
|
use ln::{PaymentPreimage, PaymentHash, PaymentSecret};
|
||||||
use ln::channelmanager::{HTLCForwardInfo, CLTV_FAR_FAR_AWAY};
|
use ln::channelmanager::{HTLCForwardInfo, CLTV_FAR_FAR_AWAY};
|
||||||
use ln::onion_utils;
|
use ln::onion_utils;
|
||||||
use routing::router::{Route, get_route};
|
|
||||||
use routing::network_graph::NetworkUpdate;
|
use routing::network_graph::NetworkUpdate;
|
||||||
use ln::features::{InitFeatures, InvoiceFeatures};
|
use routing::router::Route;
|
||||||
|
use ln::features::InitFeatures;
|
||||||
use ln::msgs;
|
use ln::msgs;
|
||||||
use ln::msgs::{ChannelMessageHandler, ChannelUpdate, OptionalField};
|
use ln::msgs::{ChannelMessageHandler, ChannelUpdate, OptionalField};
|
||||||
use util::test_utils;
|
|
||||||
use util::events::{Event, MessageSendEvent, MessageSendEventsProvider};
|
use util::events::{Event, MessageSendEvent, MessageSendEventsProvider};
|
||||||
use util::ser::{Writeable, Writer};
|
use util::ser::{Writeable, Writer};
|
||||||
use util::config::UserConfig;
|
use util::config::UserConfig;
|
||||||
|
@ -267,11 +266,9 @@ fn test_fee_failures() {
|
||||||
let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[Some(config), Some(config), Some(config)]);
|
let node_chanmgrs = create_node_chanmgrs(3, &node_cfgs, &[Some(config), Some(config), Some(config)]);
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
let channels = [create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()), create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known())];
|
let channels = [create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()), create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known())];
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &nodes[0].net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 40_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
// positive case
|
// positive case
|
||||||
let (payment_preimage_success, payment_hash_success, payment_secret_success) = get_payment_preimage_hash!(nodes[2]);
|
let (route, payment_hash_success, payment_preimage_success, payment_secret_success) = get_route_and_payment_hash!(nodes[0], nodes[2], 40_000);
|
||||||
nodes[0].node.send_payment(&route, payment_hash_success, &Some(payment_secret_success)).unwrap();
|
nodes[0].node.send_payment(&route, payment_hash_success, &Some(payment_secret_success)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
pass_along_route(&nodes[0], &[&[&nodes[1], &nodes[2]]], 40_000, payment_hash_success, payment_secret_success);
|
pass_along_route(&nodes[0], &[&[&nodes[1], &nodes[2]]], 40_000, payment_hash_success, payment_secret_success);
|
||||||
|
@ -324,10 +321,8 @@ fn test_onion_failure() {
|
||||||
*node.keys_manager.override_session_priv.lock().unwrap() = Some([3; 32]);
|
*node.keys_manager.override_session_priv.lock().unwrap() = Some([3; 32]);
|
||||||
}
|
}
|
||||||
let channels = [create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()), create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known())];
|
let channels = [create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known()), create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known())];
|
||||||
let (_, payment_hash, payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 40000);
|
||||||
let logger = test_utils::TestLogger::new();
|
// positive case
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &nodes[0].net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 40000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
// positve case
|
|
||||||
send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 40000);
|
send_payment(&nodes[0], &vec!(&nodes[1], &nodes[2])[..], 40000);
|
||||||
|
|
||||||
// intermediate node failure
|
// intermediate node failure
|
||||||
|
|
|
@ -13,11 +13,9 @@
|
||||||
|
|
||||||
use ln::{PaymentPreimage, PaymentHash};
|
use ln::{PaymentPreimage, PaymentHash};
|
||||||
use ln::channelmanager::{PaymentId, PaymentSendFailure};
|
use ln::channelmanager::{PaymentId, PaymentSendFailure};
|
||||||
use routing::router::get_route;
|
use ln::features::InitFeatures;
|
||||||
use ln::features::{InitFeatures, InvoiceFeatures};
|
|
||||||
use ln::msgs;
|
use ln::msgs;
|
||||||
use ln::msgs::ChannelMessageHandler;
|
use ln::msgs::ChannelMessageHandler;
|
||||||
use util::test_utils;
|
|
||||||
use util::events::{Event, MessageSendEvent, MessageSendEventsProvider};
|
use util::events::{Event, MessageSendEvent, MessageSendEventsProvider};
|
||||||
use util::errors::APIError;
|
use util::errors::APIError;
|
||||||
|
|
||||||
|
@ -40,10 +38,7 @@ fn retry_single_path_payment() {
|
||||||
// Rebalance to find a route
|
// Rebalance to find a route
|
||||||
send_payment(&nodes[2], &vec!(&nodes[1])[..], 3_000_000);
|
send_payment(&nodes[2], &vec!(&nodes[1])[..], 3_000_000);
|
||||||
|
|
||||||
let logger = test_utils::TestLogger::new();
|
let (route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 100_000);
|
||||||
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
// Rebalance so that the first hop fails.
|
// Rebalance so that the first hop fails.
|
||||||
send_payment(&nodes[1], &vec!(&nodes[2])[..], 2_000_000);
|
send_payment(&nodes[1], &vec!(&nodes[2])[..], 2_000_000);
|
||||||
|
@ -95,13 +90,10 @@ fn mpp_retry() {
|
||||||
let chan_2_id = create_announced_chan_between_nodes(&nodes, 0, 2, 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_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 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
|
// Rebalance
|
||||||
send_payment(&nodes[3], &vec!(&nodes[2])[..], 1_500_000);
|
send_payment(&nodes[3], &vec!(&nodes[2])[..], 1_500_000);
|
||||||
|
|
||||||
let (payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!(&nodes[3]);
|
let (mut route, payment_hash, payment_preimage, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[3], 1_000_000);
|
||||||
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();
|
let path = route.paths[0].clone();
|
||||||
route.paths.push(path);
|
route.paths.push(path);
|
||||||
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
route.paths[0][0].pubkey = nodes[1].node.get_our_node_id();
|
||||||
|
@ -186,10 +178,7 @@ fn retry_expired_payment() {
|
||||||
// Rebalance to find a route
|
// Rebalance to find a route
|
||||||
send_payment(&nodes[2], &vec!(&nodes[1])[..], 3_000_000);
|
send_payment(&nodes[2], &vec!(&nodes[1])[..], 3_000_000);
|
||||||
|
|
||||||
let logger = test_utils::TestLogger::new();
|
let (route, payment_hash, _, payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 100_000);
|
||||||
let (_payment_preimage, payment_hash, payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &Vec::new(), 100_000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
|
|
||||||
// Rebalance so that the first hop fails.
|
// Rebalance so that the first hop fails.
|
||||||
send_payment(&nodes[1], &vec!(&nodes[2])[..], 2_000_000);
|
send_payment(&nodes[1], &vec!(&nodes[2])[..], 2_000_000);
|
||||||
|
|
|
@ -165,11 +165,8 @@ fn htlc_fail_async_shutdown() {
|
||||||
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
let mut nodes = create_network(3, &node_cfgs, &node_chanmgrs);
|
||||||
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
let chan_1 = create_announced_chan_between_nodes(&nodes, 0, 1, InitFeatures::known(), InitFeatures::known());
|
||||||
let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
let chan_2 = create_announced_chan_between_nodes(&nodes, 1, 2, InitFeatures::known(), InitFeatures::known());
|
||||||
let logger = test_utils::TestLogger::new();
|
|
||||||
|
|
||||||
let (_, our_payment_hash, our_payment_secret) = get_payment_preimage_hash!(nodes[2]);
|
let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[0], nodes[2], 100000);
|
||||||
let net_graph_msg_handler = &nodes[0].net_graph_msg_handler;
|
|
||||||
let route = get_route(&nodes[0].node.get_our_node_id(), &net_graph_msg_handler.network_graph, &nodes[2].node.get_our_node_id(), Some(InvoiceFeatures::known()), None, &[], 100000, TEST_FINAL_CLTV, &logger).unwrap();
|
|
||||||
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
nodes[0].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)).unwrap();
|
||||||
check_added_monitors!(nodes[0], 1);
|
check_added_monitors!(nodes[0], 1);
|
||||||
let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
let updates = get_htlc_update_msgs!(nodes[0], nodes[1].node.get_our_node_id());
|
||||||
|
|
Loading…
Add table
Reference in a new issue