Skip to content

Commit 35c9567

Browse files
committed
Persist when ChannelMangager::splice_channel is Ok
When ChannelMangager::splice_channel returns Ok, a QuiescentAction is set. Since this is persisted with a FundedChannel, an Ok result should trigger persistence.
1 parent 664696c commit 35c9567

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4686,7 +4686,7 @@ where
46864686
);
46874687
res = result;
46884688
match res {
4689-
Ok(_) => NotifyOption::SkipPersistHandleEvents,
4689+
Ok(_) => NotifyOption::DoPersist,
46904690
Err(_) => NotifyOption::SkipPersistNoEvents,
46914691
}
46924692
});

0 commit comments

Comments
 (0)