Skip to content

Commit

Permalink
Fix some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nventuro committed Jan 17, 2025
1 parent dde01d7 commit 2571eaf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions noir-projects/aztec-nr/aztec/src/test/mocks/mock_struct.nr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use dep::protocol_types::traits::{Deserialize, Serialize};

pub(crate) struct MockStruct {
pub(crate) a: Field,
pub(crate) b: Field,
pub struct MockStruct {
pub a: Field,
pub b: Field,
}

impl MockStruct {
Expand Down
4 changes: 2 additions & 2 deletions noir-projects/aztec-nr/aztec/src/test/mocks/mod.nr
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub(crate) mod mock_note;
pub(crate) mod mock_struct;
mod mock_note;
mod mock_struct;
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ contract Test {
use dep::aztec::protocol_types::{
constants::{MAX_NOTE_HASH_READ_REQUESTS_PER_CALL, PRIVATE_LOG_SIZE_IN_FIELDS},
point::Point,
traits::{Deserialize, Serialize},
traits::{Deserialize, Hash, Serialize},
utils::arrays::array_concat,
};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use dep::aztec::note::note_interface::NoteInterface;
use crate::{Test, test_note::TestNote};
use dep::aztec::note::note_interface::NoteInterface;
use dep::uint_note::uint_note::UintNote;
use dep::value_note::value_note::ValueNote;

Expand Down

0 comments on commit 2571eaf

Please sign in to comment.