Skip to content

Commit

Permalink
Remove redundant comment
Browse files Browse the repository at this point in the history
  • Loading branch information
octavonce committed Oct 15, 2022
1 parent e594384 commit 80f575d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,10 @@ use std::marker::PhantomData;
use std::fmt;
use zeroize::Zeroize;

const SEED_BYTES: usize = 64;

/// Generates simple wallets consisting of an Address and encrypted private key.
///
/// Returns them as a tuple of two strings.
pub fn gen_encrypted_simple_wallet(passphrase: &str, batch_size: u64) -> Vec<(String, String)> {
// Calculate argon2 hash from random seed
let pass_hash = argon2rs::argon2d_simple(passphrase, "purplecoin.default.salt");

// Transform argon2 hash into a 512bit output
Expand Down

0 comments on commit 80f575d

Please sign in to comment.