Skip to content

Commit

Permalink
fix up a few merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Apr 30, 2024
1 parent 8ecba62 commit abc4b43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions openmls/src/group/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ pub(crate) enum CoreGroupParseMessageError {

/// Create group context ext proposal error
#[derive(Error, Debug, PartialEq, Clone)]
pub enum CreateGroupContextExtProposalError<KeyStoreError> {
pub enum CreateGroupContextExtProposalError<StorageError> {
/// See [`LibraryError`] for more details.
#[error(transparent)]
LibraryError(#[from] LibraryError),
Expand All @@ -515,10 +515,10 @@ pub enum CreateGroupContextExtProposalError<KeyStoreError> {
LeafNodeValidation(#[from] LeafNodeValidationError),
/// See [`MlsGroupStateError`] for more details.
#[error(transparent)]
MlsGroupStateError(#[from] MlsGroupStateError),
MlsGroupStateError(#[from] MlsGroupStateError<StorageError>),
/// See [`CreateCommitError`] for more details.
#[error(transparent)]
CreateCommitError(#[from] CreateCommitError<KeyStoreError>),
CreateCommitError(#[from] CreateCommitError<StorageError>),
}

/// Error merging a commit.
Expand Down
2 changes: 1 addition & 1 deletion openmls/src/group/mls_group/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ pub enum ProposalError<StorageError> {
ValidationError(#[from] ValidationError),
/// See [`CreateGroupContextExtProposalError`] for more details.
#[error(transparent)]
CreateGroupContextExtProposalError(#[from] CreateGroupContextExtProposalError),
CreateGroupContextExtProposalError(#[from] CreateGroupContextExtProposalError<StorageError>),
/// Error writing proposal to storage.
#[error("error writing proposal to storage")]
StorageError(StorageError),
Expand Down

0 comments on commit abc4b43

Please sign in to comment.