From 5986102d3f6733dc7e81eaddad3a9d1f699e86ed Mon Sep 17 00:00:00 2001 From: Andrew McKenzie Date: Fri, 7 Jun 2024 13:09:19 +0100 Subject: [PATCH] tweaks --- mobile_verifier/src/reward_shares.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile_verifier/src/reward_shares.rs b/mobile_verifier/src/reward_shares.rs index 7ff8e27f7..b56a1a072 100644 --- a/mobile_verifier/src/reward_shares.rs +++ b/mobile_verifier/src/reward_shares.rs @@ -573,7 +573,7 @@ impl CoveragePoints { epoch: &'_ Range>, poc_rewards_per_share: Decimal, ) -> Option + '_> { - tracing::info!("poc_rewards_per_share {:?}", poc_rewards_per_share); + tracing::info!(%poc_rewards_per_share); let start_period = epoch.start.encode_timestamp(); let end_period = epoch.end.encode_timestamp(); if poc_rewards_per_share > Decimal::ZERO { @@ -590,7 +590,7 @@ impl CoveragePoints { hotspot_points.radio_points.into_iter(), ) }) - .filter(|(poc_reward, _mobile_reward)| *poc_reward > 0), + .filter(|(poc_reward, _mobile_reward)| *poc_reward > 0) ) } else { None