Skip to content

Commit

Permalink
f rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
arik-so committed Jan 30, 2024
1 parent 17b4036 commit c7e1ee2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lightning/src/ln/msgs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1740,7 +1740,7 @@ mod fuzzy_internal_msgs {
custom_tlvs: Vec<(u64, Vec<u8>)>,
sender_intended_htlc_amt_msat: u64,
cltv_expiry_height: u32,
trampoline_packet: Option<crate::onion_message::Packet>
trampoline_packet: Option<crate::onion_message::packet::Packet>
},
BlindedForward {
encrypted_tlvs: Vec<u8>,
Expand Down Expand Up @@ -2886,7 +2886,7 @@ mod tests {
use std::net::{Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6, ToSocketAddrs};
#[cfg(feature = "std")]
use crate::ln::msgs::SocketAddressParseError;
use crate::onion_message::Packet;
use crate::onion_message::packet::Packet;

#[test]
fn encoding_channel_reestablish() {
Expand Down Expand Up @@ -4175,8 +4175,8 @@ mod tests {
payment_metadata: None,
keysend_preimage: None,
custom_tlvs: Vec::new(),
amt_msat: 0x0badf00d01020304,
outgoing_cltv_value: 0xffffffff,
sender_intended_htlc_amt_msat: 0x0badf00d01020304,
cltv_expiry_height: 0xffffffff,
trampoline_packet: Some(trampoline_packet)
};
let encoded_payload = msg.encode();
Expand Down

0 comments on commit c7e1ee2

Please sign in to comment.