Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed May 4, 2023
1 parent 1baaf31 commit f42f0e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions acir/src/native_types/witness_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ use crate::native_types::Witness;
#[derive(Debug, Error)]
pub enum WitnessMapError {
#[error(transparent)]
MsgpackEncodeError(#[from] rmp_serde::encode::Error),
MsgpackEncode(#[from] rmp_serde::encode::Error),

#[error(transparent)]
MsgpackDecodeError(#[from] rmp_serde::decode::Error),
MsgpackDecode(#[from] rmp_serde::decode::Error),

#[error(transparent)]
DeflateError(#[from] std::io::Error),
Deflate(#[from] std::io::Error),
}

/// A map from the witnesses in a constraint system to the field element values
Expand Down
2 changes: 1 addition & 1 deletion acvm/src/pwg/directives.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::cmp::Ordering;

use acir::{
circuit::directives::{Directive, LogInfo},
native_types::{Witness, WitnessMap},
native_types::WitnessMap,
FieldElement,
};
use num_bigint::BigUint;
Expand Down

0 comments on commit f42f0e5

Please sign in to comment.