Skip to content

Commit

Permalink
Fix capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
nventuro committed Apr 23, 2024
1 parent 9eb13a3 commit 053a094
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use dep::aztec::{
context::PrivateContext
};

global Test_NOTE_LEN: Field = 1;
global TEST_NOTE_LEN: Field = 1;

// A note which stores a field and is expected to be passed around using the `addNote` function.
// WARNING: This Note is not private as it does not contain randomness and hence it can be easy to perform
Expand All @@ -14,7 +14,7 @@ struct TestNote {
value: Field,
}

impl NoteInterface<Test_NOTE_LEN> for TestNote {
impl NoteInterface<TEST_NOTE_LEN> for TestNote {

fn compute_nullifier(self, _context: &mut PrivateContext) -> Field {
// This note is expected to be shared between users and for this reason can't be nullified using a secret.
Expand Down

0 comments on commit 053a094

Please sign in to comment.