Skip to content

Commit

Permalink
code review
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed May 17, 2023
1 parent b6b2c6c commit 7439e39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/nargo_cli/src/cli/fs/common_reference_string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ fn common_reference_string_location() -> PathBuf {
cache_dir.join(BACKEND_IDENTIFIER).join(TRANSCRIPT_NAME)
}

pub(crate) fn get_common_reference_string<Backend: CommonReferenceString>(
backend: &Backend,
pub(crate) fn get_common_reference_string<B: CommonReferenceString>(
backend: &B,
circuit: &Circuit,
) -> Result<Vec<u8>, Backend::Error> {
) -> Result<Vec<u8>, B::Error> {
use tokio::runtime::Builder;

let crs_path = common_reference_string_location();
Expand Down

0 comments on commit 7439e39

Please sign in to comment.