Skip to content

Commit 22f0271

Browse files
committed
f ignore useless return valuet
1 parent 6877e6d commit 22f0271

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/chain/chainmonitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1484,7 +1484,7 @@ where
14841484
&self,
14851485
) -> Vec<(OutPoint, ChannelId, Vec<MonitorEvent>, PublicKey)> {
14861486
for (channel_id, update_id) in self.persister.get_and_clear_completed_updates() {
1487-
self.channel_monitor_updated(channel_id, update_id);
1487+
let _ = self.channel_monitor_updated(channel_id, update_id);
14881488
}
14891489
let mut pending_monitor_events = self.pending_monitor_events.lock().unwrap().split_off(0);
14901490
for monitor_state in self.monitors.read().unwrap().values() {

0 commit comments

Comments
 (0)