We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3add368 commit 17355a9Copy full SHA for 17355a9
mls-rs/src/group/message_processor.rs
@@ -680,6 +680,8 @@ pub(crate) trait MessageProcessor: Send + Sync {
680
self.group_state_mut().pending_reinit = Some(reinit.proposal.clone());
681
CommitEffect::ReInit(reinit)
682
} else if let Some(remove_proposal) = self_removed {
683
+ // since we are removed, this is the last version of the ratchet tree we're ever gonna see
684
+ self.group_state_mut().public_tree = provisional_state.public_tree.clone();
685
let new_epoch = NewEpoch::new(self.group_state().clone(), &provisional_state);
686
CommitEffect::Removed {
687
remove_proposal,
0 commit comments