mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-20 19:11:08 +03:00
Small cleanup of rand usage (#1576)
Clean 3 build warning of deprecated item 'rand::Rand::rand'
This commit is contained in:
parent
32486e2f63
commit
8d62247c99
6 changed files with 11 additions and 21 deletions
|
@ -14,7 +14,7 @@
|
|||
|
||||
//! Compact Blocks.
|
||||
|
||||
use rand::{thread_rng, RngCore};
|
||||
use rand::{thread_rng, Rng};
|
||||
|
||||
use consensus::VerifySortOrder;
|
||||
use core::block::{Block, BlockHeader, Error};
|
||||
|
@ -164,7 +164,7 @@ impl CompactBlock {
|
|||
impl From<Block> for CompactBlock {
|
||||
fn from(block: Block) -> Self {
|
||||
let header = block.header.clone();
|
||||
let nonce = thread_rng().next_u64();
|
||||
let nonce = thread_rng().gen();
|
||||
|
||||
let out_full = block
|
||||
.outputs()
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
//! Compact Transactions.
|
||||
|
||||
use rand::{thread_rng, RngCore};
|
||||
use rand::{thread_rng, Rng};
|
||||
|
||||
use consensus::VerifySortOrder;
|
||||
use core::hash::{Hash, Hashed};
|
||||
|
@ -129,7 +129,7 @@ impl From<Transaction> for CompactTransaction {
|
|||
let tx_hash = tx.hash();
|
||||
|
||||
// Generate a random nonce (short_ids specific to a particular peer connection).
|
||||
let nonce = thread_rng().next_u64();
|
||||
let nonce = thread_rng().gen();
|
||||
|
||||
let mut kern_ids = vec![];
|
||||
|
||||
|
|
|
@ -16,8 +16,7 @@ use std::collections::VecDeque;
|
|||
use std::net::{SocketAddr, TcpStream};
|
||||
use std::sync::{Arc, RwLock};
|
||||
|
||||
use rand::os::OsRng;
|
||||
use rand::RngCore;
|
||||
use rand::{thread_rng, Rng};
|
||||
|
||||
use core::core::hash::Hash;
|
||||
use core::pow::Difficulty;
|
||||
|
@ -185,8 +184,7 @@ impl Handshake {
|
|||
|
||||
/// Generate a new random nonce and store it in our ring buffer
|
||||
fn next_nonce(&self) -> u64 {
|
||||
let mut rng = OsRng::new().unwrap();
|
||||
let nonce = rng.next_u64();
|
||||
let nonce = thread_rng().gen();
|
||||
|
||||
let mut nonces = self.nonces.write().unwrap();
|
||||
nonces.push_back(nonce);
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
// limitations under the License.
|
||||
|
||||
use chrono::prelude::Utc;
|
||||
use rand::{self, Rng};
|
||||
use rand::{thread_rng, Rng};
|
||||
use std::sync::atomic::{AtomicBool, Ordering};
|
||||
use std::sync::{Arc, RwLock};
|
||||
use std::thread;
|
||||
|
@ -176,7 +176,7 @@ fn process_fresh_entries(
|
|||
) -> Result<(), PoolError> {
|
||||
let mut tx_pool = tx_pool.write().unwrap();
|
||||
|
||||
let mut rng = rand::thread_rng();
|
||||
let mut rng = thread_rng();
|
||||
|
||||
let fresh_entries = &mut tx_pool
|
||||
.stempool
|
||||
|
@ -209,7 +209,7 @@ fn process_expired_entries(
|
|||
tx_pool: Arc<RwLock<TransactionPool>>,
|
||||
) -> Result<(), PoolError> {
|
||||
let now = Utc::now().timestamp();
|
||||
let embargo_sec = dandelion_config.embargo_secs.unwrap() + rand::thread_rng().gen_range(0, 31);
|
||||
let embargo_sec = dandelion_config.embargo_secs.unwrap() + thread_rng().gen_range(0, 31);
|
||||
let cutoff = now - embargo_sec as i64;
|
||||
|
||||
let mut expired_entries = vec![];
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
//! them into a block and returns it.
|
||||
|
||||
use chrono::prelude::{DateTime, NaiveDateTime, Utc};
|
||||
use rand::{self, Rng};
|
||||
use rand::{thread_rng, Rng};
|
||||
use std::sync::{Arc, RwLock};
|
||||
use std::thread;
|
||||
use std::time::Duration;
|
||||
|
@ -135,8 +135,7 @@ fn build_block(
|
|||
verifier_cache,
|
||||
)?;
|
||||
|
||||
let mut rng = rand::OsRng::new().unwrap();
|
||||
b.header.pow.nonce = rng.gen();
|
||||
b.header.pow.nonce = thread_rng().gen();
|
||||
b.header.timestamp = DateTime::<Utc>::from_utc(NaiveDateTime::from_timestamp(now_sec, 0), Utc);;
|
||||
|
||||
let b_difficulty = (b.header.total_difficulty() - head.total_difficulty()).to_num();
|
||||
|
|
|
@ -145,13 +145,6 @@ macro_rules! impl_array_newtype {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl ::rand::Rand for $thing {
|
||||
#[inline]
|
||||
fn rand<R: ::rand::Rng>(r: &mut R) -> $thing {
|
||||
$thing(::rand::Rand::rand(r))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue