Skip to content

Commit

Permalink
run format
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Apr 30, 2024
1 parent abc4b43 commit d758ad2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion openmls/src/extensions/test_extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,5 +520,4 @@ fn last_resort_extension(ciphersuite: Ciphersuite, provider: &impl OpenMlsProvid
.key_store()
.read::<HpkePrivateKey>(kp.hpke_init_key().as_slice());
assert!(private_key.is_some());

}
3 changes: 2 additions & 1 deletion openmls/src/group/core_group/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,8 @@ impl CoreGroup {
framing_parameters: FramingParameters,
extensions: Extensions,
signer: &impl Signer,
) -> Result<AuthenticatedContent, CreateGroupContextExtProposalError<Provider::StorageError>> {
) -> Result<AuthenticatedContent, CreateGroupContextExtProposalError<Provider::StorageError>>
{
// Ensure that the group supports all the extensions that are wanted.
let required_extension = extensions
.iter()
Expand Down
4 changes: 2 additions & 2 deletions openmls/src/group/mls_group/proposal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ use openmls_traits::{signatures::Signer, storage::StorageProvider, types::Cipher
use super::{
core_group::create_commit_params::CreateCommitParams,
errors::{ProposalError, ProposeAddMemberError, ProposeRemoveMemberError},
CreateGroupContextExtProposalError, GroupContextExtensionProposal, CustomProposal, MlsGroup, MlsGroupState,
PendingCommitState, Proposal,
CreateGroupContextExtProposalError, CustomProposal, GroupContextExtensionProposal, MlsGroup,
MlsGroupState, PendingCommitState, Proposal,
};
use crate::{
binary_tree::LeafNodeIndex,
Expand Down

0 comments on commit d758ad2

Please sign in to comment.