Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykoren committed Jul 19, 2024
1 parent d81026b commit a842980
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/note_encryption/orchard_domain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

use core::fmt;

use zcash_note_encryption_zsa::{AEAD_TAG_SIZE, MEMO_SIZE};
use zcash_note_encryption_zsa::note_bytes::NoteBytes;
use zcash_note_encryption_zsa::{AEAD_TAG_SIZE, MEMO_SIZE};

use crate::{
action::Action,
Expand Down
12 changes: 6 additions & 6 deletions src/note_encryption/orchard_domain_vanilla.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//! This module implements the note encryption logic specific for the `OrchardVanilla` flavor.

use zcash_note_encryption_zsa::note_bytes::NoteBytesData;
use crate::{
note::{AssetBase, Note},
orchard_flavor::OrchardVanilla,
};
use zcash_note_encryption_zsa::note_bytes::NoteBytesData;

use super::{
domain::{
Expand Down Expand Up @@ -40,11 +40,6 @@ mod tests {

use rand::rngs::OsRng;

use zcash_note_encryption_zsa::{
try_compact_note_decryption, try_note_decryption, try_output_recovery_with_ovk, Domain,
EphemeralKeyBytes,
};
use zcash_note_encryption_zsa::note_bytes::NoteBytesData;
use crate::{
action::Action,
address::Address,
Expand All @@ -60,6 +55,11 @@ mod tests {
primitives::redpallas,
value::{NoteValue, ValueCommitment},
};
use zcash_note_encryption_zsa::note_bytes::NoteBytesData;
use zcash_note_encryption_zsa::{
try_compact_note_decryption, try_note_decryption, try_output_recovery_with_ovk, Domain,
EphemeralKeyBytes,
};

use super::super::{
compact_action::CompactAction,
Expand Down
12 changes: 6 additions & 6 deletions src/note_encryption/orchard_domain_zsa.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//! This module implements the note encryption logic specific for the `OrchardZSA` flavor.

use zcash_note_encryption_zsa::note_bytes::NoteBytesData;
use crate::{
note::{AssetBase, Note},
orchard_flavor::OrchardZSA,
};
use zcash_note_encryption_zsa::note_bytes::NoteBytesData;

use super::{
domain::{
Expand Down Expand Up @@ -47,11 +47,6 @@ mod tests {

use rand::rngs::OsRng;

use zcash_note_encryption_zsa::{
try_compact_note_decryption, try_note_decryption, try_output_recovery_with_ovk, Domain,
EphemeralKeyBytes,
};
use zcash_note_encryption_zsa::note_bytes::NoteBytesData;
use crate::{
action::Action,
address::Address,
Expand All @@ -67,6 +62,11 @@ mod tests {
primitives::redpallas,
value::{NoteValue, ValueCommitment},
};
use zcash_note_encryption_zsa::note_bytes::NoteBytesData;
use zcash_note_encryption_zsa::{
try_compact_note_decryption, try_note_decryption, try_output_recovery_with_ovk, Domain,
EphemeralKeyBytes,
};

use super::super::{
compact_action::CompactAction,
Expand Down

0 comments on commit a842980

Please sign in to comment.