Skip to content

Commit

Permalink
Format Rust code using rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Nov 25, 2023
1 parent cc695a6 commit 11ab84f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arbitrum-client/integration/helpers.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Helper functions for Arbitrum client integration tests
use eyre::{eyre, Result};
use std::{fs::File, io::Read};
use eyre::{Result, eyre};

use crate::constants::DEPLOYMENTS_KEY;

Expand Down
3 changes: 2 additions & 1 deletion arbitrum-client/integration/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ impl From<CliArgs> for IntegrationTestArgs {
event_source,
arb_priv_key: test_args.private_key,
rpc_url: test_args.rpc_url,
})).unwrap();
}))
.unwrap();

Self { arbitrum_client }
}
Expand Down
5 changes: 4 additions & 1 deletion circuit-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ use constants::{
use fixed_point::DEFAULT_FP_PRECISION;
use jf_primitives::pcs::prelude::Commitment;
use merkle::MerkleOpening;
use mpc_plonk::{multiprover::proof_system::MpcPlonkCircuit as GenericMpcPlonkCircuit, proof_system::structs::Proof};
use mpc_plonk::{
multiprover::proof_system::MpcPlonkCircuit as GenericMpcPlonkCircuit,
proof_system::structs::Proof,
};
use mpc_relation::PlonkCircuit as GenericPlonkCircuit;
use num_bigint::BigUint;
use renegade_crypto::fields::{biguint_to_scalar, scalar_to_biguint};
Expand Down

0 comments on commit 11ab84f

Please sign in to comment.