Skip to content

Commit 5e96573

Browse files
committed
Rename break_chan_phase_entry
Now that ChannelPhase has been renamed, drop phase from related identifiers.
1 parent dd9aef7 commit 5e96573

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3042,7 +3042,7 @@ macro_rules! convert_channel_err {
30423042
};
30433043
}
30443044

3045-
macro_rules! break_chan_phase_entry {
3045+
macro_rules! break_channel_entry {
30463046
($self: ident, $peer_state: expr, $res: expr, $entry: expr) => {
30473047
match $res {
30483048
Ok(res) => res,
@@ -4566,7 +4566,7 @@ where
45664566
first_hop_htlc_msat: htlc_msat,
45674567
payment_id,
45684568
}, onion_packet, None, &self.fee_estimator, &&logger);
4569-
match break_chan_phase_entry!(self, peer_state, send_res, chan_phase_entry) {
4569+
match break_channel_entry!(self, peer_state, send_res, chan_phase_entry) {
45704570
Some(monitor_update) => {
45714571
match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan) {
45724572
false => {

0 commit comments

Comments
 (0)