Skip to content

Commit 92bdf28

Browse files
committed
Rename break_chan_phase_entry
Now that ChannelPhase has been renamed, drop phase from related identifiers.
1 parent efa1b35 commit 92bdf28

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
@@ -3050,7 +3050,7 @@ macro_rules! convert_channel_err {
30503050
};
30513051
}
30523052

3053-
macro_rules! break_chan_phase_entry {
3053+
macro_rules! break_channel_entry {
30543054
($self: ident, $peer_state: expr, $res: expr, $entry: expr) => {
30553055
match $res {
30563056
Ok(res) => res,
@@ -4546,7 +4546,7 @@ where
45464546
first_hop_htlc_msat: htlc_msat,
45474547
payment_id,
45484548
}, onion_packet, None, &self.fee_estimator, &&logger);
4549-
match break_chan_phase_entry!(self, peer_state, send_res, chan_phase_entry) {
4549+
match break_channel_entry!(self, peer_state, send_res, chan_phase_entry) {
45504550
Some(monitor_update) => {
45514551
match handle_new_monitor_update!(self, funding_txo, monitor_update, peer_state_lock, peer_state, per_peer_state, chan) {
45524552
false => {

0 commit comments

Comments
 (0)