You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checks if the monitor is fully resolved. Resolved monitor is one that has claimed all of
its ouputs and balacnes.
This function returns true only if `get_claimable_balances` has been empty for at least
2016 blocks.
// previously assumed we claimed all funds, but we have new funds to claim.
1889
+
// Should not happen in practice.
1890
+
debug_assert!(false,"Thought we were done claiming funds, but claimable_balances now has entries");
1891
+
log_error!(logger,
1892
+
"WARNING: LDK thought it was done claiming all the available funds in the ChannelMonitor for channel {}, but later decided it had more to claim. This is potentially an important bug in LDK, please report it at https://github.com/lightningdevkit/rust-lightning/issues/new",
1893
+
inner.get_funding_txo().0);
1894
+
inner.balances_empty_height = None;
1895
+
false
1896
+
},
1897
+
(None,true) => {
1898
+
// Claimed all funds but `balances_empty_height` is None. It is set to the
0 commit comments