Skip to content

Commit

Permalink
circuits: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
xevisalle authored Sep 25, 2024
1 parent c6dd5c6 commit fd27df8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
5 changes: 0 additions & 5 deletions circuits/src/transaction.rs

This file was deleted.

8 changes: 4 additions & 4 deletions circuits/tests/serialization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use phoenix_core::{Note, PublicKey, SecretKey};
const HEIGHT: usize = 17;

#[test]
fn tx_ciruit_1_2() -> Result<(), BytesError> {
fn tx_circuit_1_2() -> Result<(), BytesError> {
let mut rng = StdRng::seed_from_u64(0xbeef);

let circuit = random_circuit::<1>(&mut rng);
Expand All @@ -36,7 +36,7 @@ fn tx_ciruit_1_2() -> Result<(), BytesError> {
}

#[test]
fn tx_ciruit_2_2() -> Result<(), BytesError> {
fn tx_circuit_2_2() -> Result<(), BytesError> {
let mut rng = StdRng::seed_from_u64(0xbeef);

let circuit = random_circuit::<2>(&mut rng);
Expand All @@ -51,7 +51,7 @@ fn tx_ciruit_2_2() -> Result<(), BytesError> {
}

#[test]
fn tx_ciruit_3_2() -> Result<(), BytesError> {
fn tx_circuit_3_2() -> Result<(), BytesError> {
let mut rng = StdRng::seed_from_u64(0xbeef);

let circuit = random_circuit::<3>(&mut rng);
Expand All @@ -66,7 +66,7 @@ fn tx_ciruit_3_2() -> Result<(), BytesError> {
}

#[test]
fn tx_ciruit_4_2() -> Result<(), BytesError> {
fn tx_circuit_4_2() -> Result<(), BytesError> {
let mut rng = StdRng::seed_from_u64(0xbeef);

let circuit = random_circuit::<4>(&mut rng);
Expand Down

0 comments on commit fd27df8

Please sign in to comment.