Reduce verbosity of monero block generate trace

This commit is contained in:
Franck Royer 2020-12-10 10:10:23 +11:00
parent 2541fad40f
commit 989d9d08d3
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -118,8 +118,8 @@ impl<'c> Monero {
// generate the first 70 as bulk
let monerod = &self.monerod;
let block = monerod.client().generate_blocks(70, &miner_address).await?;
tracing::info!("Generated {:?} blocks", block);
let res = monerod.client().generate_blocks(70, &miner_address).await?;
tracing::info!("Generated {:?} blocks", res.blocks.len());
miner_wallet.refresh().await?;
for (wallet, amount) in wallet_amount.iter() {