diff --git a/linera-execution/src/system.rs b/linera-execution/src/system.rs index 8ec949e3daa..61ac1254cf8 100644 --- a/linera-execution/src/system.rs +++ b/linera-execution/src/system.rs @@ -806,10 +806,7 @@ where } } RemoveCommittee { epoch } => { - ensure!( - self.committees.get_mut().remove(&epoch).is_some(), - SystemExecutionError::InvalidCommitteeRemoval - ); + self.committees.get_mut().remove(&epoch); } RegisterApplications { applications } => { for application in applications {