Skip to content

Commit

Permalink
Started Working on Spotify Verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifechukwudaniel committed Dec 21, 2023
1 parent fb5e43d commit 8d72fa3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/noir/circuits/SpotifyVerifier/Nargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[package]
name = "spotifyVerifier"
type = "bin"
authors = [""]
compiler_version = "0.10.5"

[dependencies]
11 changes: 11 additions & 0 deletions packages/noir/circuits/SpotifyVerifier/src/main.nr
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
fn main(x : Field, y : pub Field) {
assert(x != y);
}

#[test]
fn test_main() {
main(1, 2);

// Uncomment to make test fail
// main(1, 1);
}

0 comments on commit 8d72fa3

Please sign in to comment.