Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-o-how committed Aug 1, 2024
1 parent 19331c3 commit 7340a22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crates/chia-bls/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ mod signature;
#[cfg(feature = "py-bindings")]
mod parse_hex;

pub use bls_cache::PairingInfo;
pub use bls_cache::BlsCache;
pub use bls_cache::PairingInfo;
pub use derive_keys::*;
pub use error::{Error, Result};
pub use gtelement::GTElement;
Expand Down
9 changes: 1 addition & 8 deletions crates/chia-consensus/src/spendbundle_validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,7 @@ pub fn validate_clvm_and_signature(
constants: &ConsensusConstants,
height: u32,
cache: &Arc<Mutex<BlsCache>>,
) -> Result<
(
OwnedSpendBundleConditions,
Vec<PairingInfo>,
Duration,
),
ErrorCode,
> {
) -> Result<(OwnedSpendBundleConditions, Vec<PairingInfo>, Duration), ErrorCode> {
let start_time = Instant::now();
let npcresult = get_conditions_from_spendbundle(spend_bundle, max_cost, height, constants)
.map_err(|e| e.1)?;
Expand Down

0 comments on commit 7340a22

Please sign in to comment.