Skip to content

Commit

Permalink
fixing more Clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vivek-arte committed Oct 30, 2023
1 parent 3898f6a commit e546eeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/keys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ impl IssuanceMasterKey {
&self.0
}

/// Derives the Orchard issuance key for the given seed, coin type, and account.
/// Derives the Orchard-ZSA issuance key for the given seed, coin type, and account.
pub fn from_zip32_seed(
seed: &[u8],
coin_type: u32,
Expand Down Expand Up @@ -1102,7 +1102,6 @@ pub mod testing {
IssuanceValidatingKey, SpendingKey,
};
use proptest::prelude::*;
use rand::{rngs::StdRng, SeedableRng};

prop_compose! {
/// Generate a uniformly distributed Orchard spending key.
Expand Down
2 changes: 1 addition & 1 deletion src/note/asset_base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ pub mod testing {

use proptest::prelude::*;

use crate::keys::{testing::arb_issuance_master_key, IssuanceMasterKey, IssuanceValidatingKey};
use crate::keys::{testing::arb_issuance_master_key, IssuanceValidatingKey};

prop_compose! {
/// Generate a uniformly distributed note type
Expand Down

0 comments on commit e546eeb

Please sign in to comment.