Skip to content

Commit

Permalink
rusk-prover: reorder imports to align with convention
Browse files Browse the repository at this point in the history
  • Loading branch information
Neotamandua committed Dec 4, 2024
1 parent 3c38dbf commit b00479d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions rusk-prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,11 @@ use alloc::vec::Vec;

use dusk_bytes::Serializable;
use dusk_plonk::prelude::Prover as PlonkProver;
use once_cell::sync::Lazy;

use execution_core::{
transfer::phoenix::{Prove, TxCircuit, TxCircuitVec, NOTES_TREE_DEPTH},
Error,
use execution_core::transfer::phoenix::{
Prove, TxCircuit, TxCircuitVec, NOTES_TREE_DEPTH,
};
use execution_core::Error;
use once_cell::sync::Lazy;

static TX_CIRCUIT_1_2_PROVER: Lazy<PlonkProver> =
Lazy::new(|| fetch_prover("TxCircuitOneTwo"));
Expand Down

0 comments on commit b00479d

Please sign in to comment.