Skip to content

Commit bd8eb6e

Browse files
committed
f Panic on persistence error
1 parent 55ce343 commit bd8eb6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -589,8 +589,8 @@ impl LdkLite {
589589
}
590590

591591
/// Confirm the last retrieved event handled.
592-
pub fn event_handled(&self) -> Result<(), Error> {
593-
self.event_queue.event_handled()
592+
pub fn event_handled(&self) {
593+
self.event_queue.event_handled().unwrap();
594594
}
595595

596596
/// Returns our own node id

0 commit comments

Comments
 (0)